forked from proj4php/proj4php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.16 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
{
"name": "proj4php/proj4php",
"license": "LGPL-2.1",
"type": "library",
"description": "A PHP-Class for geographic coordinates transformation using proj4 definitions, thanks to a translation from Proj4JS",
"keywords": [
"geographic",
"coordinates",
"proj4",
"proj4js"
],
"homepage": "https://github.com/proj4php/proj4php",
"authors": [
{
"name": "julien2512",
"email": "moquet.julien@gmail.com",
"homepage": "https://github.com/julien2512",
"role": "Developer"
},
{
"name": "Jason Judge",
"email": "jason.judge@academe.co.uk",
"homepage": "http://academe.co.uk",
"role": "Developer"
},
{
"name": "Nick Blackwell",
"email": "nickblackwell82@gmail.com",
"homepage": "https://people.ok.ubc.ca/nblackwe",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "4.0.*"
},
"autoload": {
"psr-4": {
"proj4php\\": "src/"
}
}
}