-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
47 lines (47 loc) · 1.18 KB
/
composer.json
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
42
43
44
45
46
47
{
"name": "dansmaculotte/colissimo-php",
"description": "Colissimo Web Services PHP library",
"type": "library",
"license": "MIT",
"keywords": [
"colissimo",
"colissimo-webservices"
],
"homepage": "https://github.com/dansmaculotte/colissimo-php",
"authors": [
{
"name": "Gaël Reyrol",
"email": "gael@dansmaculotte.fr"
},
{
"name": "Romain Touzé",
"email": "romain@dansmaculotte.fr"
}
],
"autoload": {
"psr-4": {
"DansMaCulotte\\Colissimo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DansMaCulotte\\Colissimo\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2|^8.1",
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.0",
"spatie/opening-hours": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nesbot/carbon": "^2.57",
"friendsofphp/php-cs-fixer": "^3.7"
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"format": "@php vendor/bin/php-cs-fixer fix --config .php_cs.php"
}
}