-
Notifications
You must be signed in to change notification settings - Fork 122
/
composer.json
61 lines (53 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
{
"name" : "league/geotools",
"type" : "library",
"description" : "Geo-related tools PHP 7.3+ library",
"keywords" : ["geotools", "geometry", "geocoder", "geocoding", "geoip", "bounds", "distance", "batch", "async", "geohash", "geolocation", "latlong", "latitude", "longitude"],
"license" : "MIT",
"authors" : [{
"name" : "Antoine Corcy",
"email" : "[email protected]",
"homepage" : "http://sbin.dk",
"role" : "Developer"
}],
"support" : {
"issues" : "https://github.com/thephpleague/geotools/issues",
"source" : "https://github.com/thephpleague/geotools"
},
"replace" : {
"toin0u/geotools" : "*"
},
"require" : {
"php" : "^7.3 || ^7.4 || ^8.0",
"psr/cache" : "^1.0 || ^2.0 || ^3.0",
"willdurand/geocoder" : "^4.5",
"react/promise" : "^2.8",
"symfony/console" : "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/property-access" : "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/serializer" : "^4.4 || ^5.0 || ^6.0 || ^7.0",
"react/event-loop" : "^1.0",
"php-http/discovery" : "^1.0",
"cache/array-adapter" : "^1.0",
"ext-bcmath": "*",
"ext-json": "*"
},
"require-dev" : {
"phpunit/phpunit" : "^9.5"
},
"autoload" : {
"psr-4" : {
"League\\Geotools\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"League\\Geotools\\Tests\\" : "tests"
}
},
"bin" : ["bin/geotools"],
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}