-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 930 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "ekyna/colissimo",
"description": "PHP component for Colissimo shipment",
"type": "component",
"authors": [
{
"name": "Etienne Dauvergne",
"homepage": "http://ekyna.com"
}
],
"keywords": [
"php",
"colissimo",
"shipment",
"web service"
],
"homepage": "https://github.com/ekyna/Colissimo",
"license": "MIT",
"require": {
"php": ">=7.1",
"ext-soap": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"symfony/serializer": "^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~5.2"
},
"autoload": {
"psr-4": {
"Ekyna\\Component\\Colissimo\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}