forked from creof/doctrine2-spatial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
29 lines (29 loc) · 827 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
{
"name": "creof/doctrine2-spatial",
"type": "library",
"description": "Doctrine2 multi-platform support for spatial types and functions",
"keywords": ["orm", "dbal", "database", "postgresql", "mysql", "opengis", "postgis", "gis", "spatial", "geometry", "geography"],
"authors": [
{
"name": "Derek Lambert",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"doctrine/orm": ">=2.3",
"creof/geo-parser": "~2.0",
"creof/wkt-parser": "~2.0",
"creof/wkb-parser": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "<5.0",
"phpunit/phpcov": "*",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-0": {
"CrEOF\\Spatial": "lib/"
}
}
}