-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathcomposer.json
42 lines (42 loc) · 1.24 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
{
"authors": [
{"name": "Ken Guest", "email": "[email protected]", "role": "Lead"}
],
"autoload": {
"psr-0": {
"Services": "./"
}
},
"autoload-dev": {
"psr-0": {
"Services": "./"
}
},
"description": "More information available at https://pear.php.net/package/Services_OpenStreetMap",
"homepage": "https://github.com/kenguest/Services_Openstreetmap",
"include-path": [
"./"
],
"keywords": ["openstreetmap", "open", "street", "map", "osm", "maps", "openstreetmaps"],
"license": "BSD-3-Clause",
"name": "kenguest/services-openstreetmap",
"type": "library",
"require": {
"php": ">=7.2.5",
"pear/http_request2": "2.4.*",
"pear/log": "1.12.*|1.13.*|1.14.*",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "~2.2 || ~3.0",
"rector/rector": "^0.7.63 || ^0.8.0 || ^0.18.0"
},
"suggest": {
"pear/cache": "*"
},
"support": {
"issues": "https://pear.php.net/bugs/search.php?cmd=display&package_name[]=Services_OpenStreetMap",
"source": "https://github.com/kenguest/Services_Openstreetmap"
}
}