-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 924 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
{
"name": "r3mfr/api-dpae-php",
"description": "Librairie PHP facilitant l'intégration de l'API DPAE https://dpae.r3m.fr",
"type": "library",
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"symfony/http-client": "^4.4 || ^5.4 || ^6.4",
"nyholm/psr7-server": "^1.0",
"nyholm/psr7": "^1.5",
"psr/http-client": "^1.0"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-asserts": "^1.3",
"donatj/mock-webserver": "^2.4"
},
"autoload": {
"psr-4": {
"R3m\\Dpae\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Rémy DANIEL",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/codecept run"
}
}