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
42 lines (42 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "geocoder-php/plugin",
"type": "library",
"description": "Plugins to Geocoder providers",
"keywords": ["geocoder plugin"],
"homepage": "http://geocoder-php.org",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
}
],
"require": {
"php": "^7.0",
"willdurand/geocoder": "^4.0",
"psr/log": "^1.0",
"psr/simple-cache": "^1.0",
"php-http/promise": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.5",
"cache/void-adapter": "^1.0"
},
"autoload": {
"psr-4": { "Geocoder\\Plugin\\": "" },
"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": "1.0-dev"
}
}
}