-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 995 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
{
"name": "longitude-one/spatial-writer",
"type": "library",
"description": "This library convert any spatial interfaces to different binary and/or string format.",
"keywords": ["opengis", "postgis", "gis", "spatial", "geometry", "geography", "iso-13249", "ewkb", "php"],
"authors": [
{
"name": "Alexandre Tranchant",
"email": "alexandre.tranchant@gmail.com"
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"license": "MIT",
"require": {
"php": "^8.1",
"longitude-one/spatial-types": "0.0.*"
},
"require-dev": {
"phpunit/phpunit": "^10",
"jetbrains/phpstorm-attributes": "^1.1"
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"LongitudeOne\\SpatialWriter": "lib/",
"LongitudeOne\\SpatialWriter\\Tests": "tests/"
}
}
}