-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.2 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
{
"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": "^8.0",
"php-http/promise": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"willdurand/geocoder": "^4.0|^5.0"
},
"require-dev": {
"cache/void-adapter": "^1.0",
"phpunit/phpunit": "^9.5"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Geocoder\\Plugin\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}