-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "webeweb/gouv-api-library",
"description": "Integrate Gouv API with your projects",
"license": "MIT",
"type": "library",
"keywords": [
"webeweb",
"library",
"gouv",
"api"
],
"authors": [
{
"name": "webeweb",
"homepage": "https://github.com/webeweb"
}
],
"homepage": "https://github.com/webeweb/gouv-api-library",
"support": {
"issues": "https://github.com/webeweb/gouv-api-library/issues"
},
"require": {
"php": "^7.1|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"psr/log": "^1.0|^2.0|^3.0",
"webeweb/core-library": "^9.0",
"webeweb/geo-json-library": "^1.9"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^7.0|^9.0"
},
"autoload": {
"psr-4": {
"WBW\\Library\\GouvApi\\Adresse\\": "src/adresse",
"WBW\\Library\\GouvApi\\Calendrier\\": "src/calendrier",
"WBW\\Library\\GouvApi\\Common\\": "src/common",
"WBW\\Library\\GouvApi\\Entreprise\\": "src/entreprise",
"WBW\\Library\\GouvApi\\Geo\\": "src/geo"
}
},
"autoload-dev": {
"psr-4": {
"WBW\\Library\\GouvApi\\Adresse\\Tests\\": "tests/adresse",
"WBW\\Library\\GouvApi\\Calendrier\\Tests\\": "tests/calendrier",
"WBW\\Library\\GouvApi\\Common\\Tests\\": "tests/common",
"WBW\\Library\\GouvApi\\Entreprise\\Tests\\": "tests/entreprise",
"WBW\\Library\\GouvApi\\Geo\\Tests\\": "tests/geo"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}