-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
72 lines (72 loc) · 2.63 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "php-coord/php-coord",
"description": "PHPCoord is a PHP library to aid in handling coordinates. It can convert coordinates for a point from one system to another and also calculate distance between points.",
"keywords": ["coord", "geo", "latitude", "longitude", "grid ref", "map", "projection", "wgs84", "osgb3", "utm", "nad", "nzmg", "gda", "etrs", "ed50", "epsg"],
"type": "library",
"homepage": "https://www.phpcoord.net/",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
}
],
"license": "(MIT and proprietary)",
"require": {
"php": "^8.1",
"ext-zip": "*",
"composer-runtime-api": "^2.1",
"composer/pcre": "^3.1",
"opis/json-schema": "^2.3"
},
"require-dev": {
"ext-json": "*",
"ext-sqlite3": "*",
"friendsofphp/php-cs-fixer": "^3.59.3",
"nikic/php-parser": "^5.0",
"php-coord/datapack-africa": "dev-master",
"php-coord/datapack-antarctic": "dev-master",
"php-coord/datapack-arctic": "dev-master",
"php-coord/datapack-asia": "dev-master",
"php-coord/datapack-europe": "dev-master",
"php-coord/datapack-northamerica": "dev-master",
"php-coord/datapack-oceania": "dev-master",
"php-coord/datapack-southamerica": "dev-master",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5||^11.0"
},
"suggest": {
"php-coord/datapack-africa": "High-accuracy addon datapack for Africa",
"php-coord/datapack-antarctic": "High-accuracy addon datapack for the Antarctic",
"php-coord/datapack-arctic": "High-accuracy addon datapack for the Arctic",
"php-coord/datapack-asia": "High-accuracy addon datapack for Asia",
"php-coord/datapack-europe": "High-accuracy addon datapack for Europe",
"php-coord/datapack-northamerica": "High-accuracy addon datapack for North America",
"php-coord/datapack-oceania": "High-accuracy addon datapack for Oceania",
"php-coord/datapack-southamerica": "High-accuracy addon datapack for South America"
},
"config": {
"preferred-install": {
"php-coord/*": "source",
"*": "dist"
},
"sort-packages": true,
"bin-compat" : "full",
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"autoload": {
"psr-4": {
"PHPCoord\\": "src/"
},
"files": ["src/bc_namespace.php"]
},
"autoload-dev": {
"psr-4": {
"PHPCoord\\": "tests/"
}
}
}