-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
60 lines (55 loc) · 1.51 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
{
"name": "oneofftech/geoserver-client-php",
"description": "A GeoServer API client",
"type": "library",
"homepage": "https://github.com/oneofftech/geoserver-client-php",
"license": "AGPL-3.0-only",
"authors": [
{
"name": "Alessio Vertemati",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/oneofftech/geoserver-client-php/issues",
"source": "https://github.com/oneofftech/geoserver-client-php"
},
"autoload": {
"psr-4": {
"OneOffTech\\GeoServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"tests/helpers.php"
]
},
"require": {
"php": ">=7.4",
"ext-fileinfo": "*",
"ext-zip": "*",
"jms/serializer": "^3.4",
"php-http/client-implementation": "^1.0|^2.0",
"php-http/message": "^1.6",
"php-http/discovery": "^1.3",
"doctrine/annotations": "^1.4",
"doctrine/cache": "^1.6",
"php-http/client-common": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-http/curl-client": "^2.0",
"php-http/mock-client": "^1.0",
"friendsofphp/php-cs-fixer": "^3.9",
"guzzlehttp/psr7": "^1.6",
"http-interop/http-factory-guzzle": "^1.0"
},
"extra": {
"branch-alias" : {
"dev-master": "0.4.0-dev"
}
}
}