-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (28 loc) · 764 Bytes
/
composer.json
File metadata and controls
29 lines (28 loc) · 764 Bytes
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
{
"name": "emcconville/polyline-encoder",
"type": "library",
"description": "PHP Traits algorithms for Encoded Polyline & Bing Point Compression",
"keywords": ["google", "maps", "bing", "polyline", "point", "compression"],
"license": "GNU",
"authors": [
{
"name": "Eric McConville",
"email": "emcconville@emcconville.com"
}
],
"require": {
"php": ">=5.4"
},
"require-dev" : {
"phpunit/phpunit": "4.4.*",
"satooshi/php-coveralls": "dev-master"
},
"replace" : {
"emcconville/google-map-polyline-encoding-tool" : "*"
},
"autoload" : {
"psr-4" : {
"emcconville\\Polyline\\" : "src/emcconville/Polyline"
}
}
}