-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcomposer.json
54 lines (54 loc) · 1.25 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
{
"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": "^8.0",
"doctrine/dbal": "^2.13 || ^3.1"
},
"require-dev": {
"doctrine/orm": "^2.9",
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.9",
"symfony/doctrine-bridge": "^5.4 || ^6.0",
"symfony/doctrine-messenger": "^5.4 || ^6.0"
},
"suggest": {
"doctrine/orm": "For using with the Doctrine ORM"
},
"autoload": {
"psr-4": {
"Jsor\\Doctrine\\PostGIS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jsor\\Doctrine\\PostGIS\\": ["tests/fixtures", "tests/"]
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
}
}