-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 986 Bytes
/
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
{
"name": "dansmaculotte/laposte-php",
"description": "PHP SDK for La Poste API",
"type": "library",
"license": "MIT",
"keywords": [
"laposte",
"laposte-api"
],
"authors": [
{
"name": "Gaël Reyrol",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DansMaCulotte\\LaPoste\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DansMaCulotte\\LaPoste\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5",
"vlucas/phpdotenv": "^4.1"
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"format": "@php vendor/bin/php-cs-fixer fix --config .php_cs.php"
},
"config": {
"sort-packages": true
}
}