-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1012 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
34
35
{
"name": "longitude-one/spatial-types",
"type": "library",
"description": "This library implements PHP spatial types: their interfaces and their geometric and geographic classes.",
"keywords": ["opengis", "postgis", "gis", "spatial", "geometry", "geography", "iso-13249"],
"authors": [
{
"name": "Alexandre Tranchant",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"license": "MIT",
"require": {
"php": "^8.1",
"longitude-one/geo-parser": "^3.0.1",
"doctrine/deprecations": "^1.1.3"
},
"require-dev": {
"phpunit/phpunit": "^10",
"ext-pcov": "*"
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"LongitudeOne\\SpatialTypes": "lib/",
"LongitudeOne\\SpatialTypes\\Tests": "tests/"
}
}
}