forked from jsor/doctrine-postgis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.01 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
{
"name": "jsor/doctrine-postgis",
"description": "Spatial and Geographic Data with PostGIS and Doctrine.",
"keywords": [
"spatial",
"doctrine",
"dbal",
"orm",
"gis",
"postgis",
"database",
"geo",
"geometry",
"geography"
],
"license": "MIT",
"authors": [
{
"name": "Jan Sorgalla",
"email": "[email protected]",
"homepage": "https://sorgalla.com"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"doctrine/dbal": "^2.4"
},
"require-dev": {
"doctrine/orm": "^2.4",
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^4.8.35 || ^5.7"
},
"suggest": {
"doctrine/orm": "For using with the Doctrine ORM"
},
"autoload": {
"psr-4": {
"Jsor\\Doctrine\\PostGIS\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}