-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
67 lines (67 loc) · 2.41 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "longitude-one/doctrine-spatial",
"type": "library",
"description": "Doctrine multi-platform support for spatial types and functions, compliant with Doctrine 2.19, 3.1, and dev ones (3.2 and 4.0).",
"keywords": ["orm", "dbal", "database", "postgresql", "mysql", "opengis", "postgis", "gis", "spatial", "geometry", "geography", "iso-13249"],
"authors": [
{
"name": "Derek Lambert",
"email": "[email protected]"
},
{
"name": "Alexandre Tranchant",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"license": "MIT",
"replace": {
"creof/doctrine2-spatial": "*"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"longitude-one/geo-parser": "^3.0.1",
"longitude-one/wkt-parser": "^3.0.0",
"longitude-one/wkb-parser": "^3.0.0",
"doctrine/orm": "^2.19|^3.1"
},
"require-dev": {
"monolog/monolog": "^2.0",
"phpunit/phpunit": "^10.0",
"phpunit/phpcov": "^9",
"cache/array-adapter": "^1.1",
"dg/bypass-finals": "^1.3"
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"test": [
"phpunit --configuration phpunit.mysql5.7.xml",
"phpunit --configuration phpunit.mysql8.0.xml",
"phpunit --configuration phpunit.pgsql.xml"
],
"test-coverage": [
"phpunit --configuration phpunit.mysql5.7.xml --coverage-php .phpunit.cache/code-coverage/mysql5.7.cov",
"phpunit --configuration phpunit.mysql8.0.xml --coverage-php .phpunit.cache/code-coverage/mysql8.0.cov",
"phpunit --configuration phpunit.pgsql.xml --coverage-php .phpunit.cache/code-coverage/pgsql.cov",
"phpcov merge --clover .phpunit.cache/code-coverage/clover.xml .phpunit.cache/code-coverage/"
],
"test-mysql5.7": "phpunit --configuration phpunit.mysql5.7.xml",
"test-mysql8.0": "phpunit --configuration phpunit.mysql8.0.xml",
"test-pgsql": "phpunit --configuration phpunit.pgsql.xml"
},
"autoload": {
"psr-0": {
"LongitudeOne\\Spatial": "lib/",
"LongitudeOne\\Spatial\\Tests": "tests/"
}
},
"repositories" : [
]
}