-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.18 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
{
"name": "geo6/geocoder-php-geo6-poi-provider",
"type": "library",
"description": "Geocoder Geo-6 POI adapter",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Jonathan Beliën",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"geocoder-php/common-http": "^4.1",
"web-token/jwt-key-mgmt": "^1.2",
"web-token/jwt-signature": "^1.2",
"willdurand/geocoder": "^4.0"
},
"provide": {
"geocoder-php/provider-implementation": "1.0"
},
"require-dev": {
"geocoder-php/provider-integration-tests": "^1.0",
"php-http/curl-client": "^1.7 || ^2.0",
"php-http/message": "^1.0",
"phpunit/phpunit": "^6.5 || ^7.5"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Geocoder\\Provider\\Geo6\\POI\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test-ci": "phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}