-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 937 Bytes
/
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
{
"name": "php-coord-tetrad/php-coord-tetrad",
"description": "PHPCoord is a set of PHP functions for handling various co-ordinate systems and converting between them",
"keywords": ["coord","geo", "wgs84", "osgb36", "latitude", "longitude", "grid ref", "utm", "itm" ,"gps"],
"homepage": "https://github.com/stevegoddard/PHPCoordTetrad",
"authors": [
{
"name": "Steve Goddard",
"role": "Developer"
},
{
"name": "Doug Wright",
"role": "Developer"
},
{
"name": "Jonathan Stott",
"role": "Original Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.2||^8.0",
"friendsofphp/php-cs-fixer": "^2.13"
},
"autoload": {
"psr-4": {
"PHPCoord\\": "src/"
}
}
}