-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.42 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.42 KB
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
55
56
57
58
59
{
"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": "jsorgalla@gmail.com",
"homepage": "https://sorgalla.com"
}
],
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.7 || ^4.0",
"doctrine/deprecations": "^0.5.3 || ^1.0"
},
"require-dev": {
"doctrine/collections": "^2.0 || ^3.0",
"doctrine/orm": "^2.19 || ^3.0",
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^6.13",
"symfony/doctrine-bridge": "^6.4 | ^7.4 | ^8.0",
"symfony/doctrine-messenger": "^6.4 | ^7.4 | ^8.0"
},
"conflict": {
"doctrine/orm": "<2.18"
},
"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"
}
}
}