forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"name": "geocoder-php/common-http",
"type": "library",
"description": "Common files for HTTP based Geocoders",
"keywords": ["http geocoder"],
"homepage": "http://geocoder-php.org",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
}
],
"require": {
"php": "^7.0",
"willdurand/geocoder": "^4.0",
"php-http/httplug": "^1.0 || ^2.0",
"psr/http-message": "^1.0",
"php-http/message-factory": "^1.0.2",
"psr/http-message-implementation": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.5",
"symfony/stopwatch": "~2.5",
"php-http/message": "^1.0",
"php-http/mock-client": "^1.0",
"nyholm/psr7": "^1.0"
},
"autoload": {
"psr-4": { "Geocoder\\Http\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}