forked from thephpleague/geotools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (49 loc) · 1.52 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
{
"name" : "league/geotools",
"type" : "library",
"description" : "Geo-related tools PHP 5.3 library",
"keywords" : ["geotools", "geometry", "geocoder", "geocoding", "geoip", "bounds", "distance", "batch", "async"],
"homepage" : "http://geotools-php.org/",
"license" : "MIT",
"authors" : [{
"name" : "Antoine Corcy",
"email" : "[email protected]",
"homepage" : "http://sbin.dk",
"role" : "Developer"
}],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/thephpleague/geotools/issues",
"source" : "https://github.com/thephpleague/geotools"
},
"replace" : {
"toin0u/geotools" : "*"
},
"require" : {
"php" : ">=5.4",
"willdurand/geocoder" : "~2.4",
"react/promise" : "~2.2",
"symfony/console" : "~2.4",
"symfony/serializer" : "~2.4",
"react/event-loop" : "0.4.*"
},
"require-dev" : {
"kriswallsmith/buzz" : "~0.10",
"guzzle/guzzle" : "~3.7",
"zendframework/zend-http" : "~2.2",
"predis/predis" : "~0.8"
},
"autoload" : {
"psr-4" : {
"League\\Geotools\\" : "src",
"League\\Geotools\\Tests\\" : "tests"
},
"classmap" : [ "stubs/" ]
},
"bin" : ["bin/geotools"],
"extra" : {
"branch-alias" : {
"dev-master" : "0.4-dev"
}
}
}