forked from Alexandre-T/doctrine2-spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.86 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
{
"name": "alexandret/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]"
},
{
"name": "Alexandre Tranchant",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"creof/geo-parser": "~2.0",
"creof/wkt-parser": "~2.0",
"creof/wkb-parser": "~2.0",
"doctrine/orm": "^2.8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "*",
"phpunit/phpcov": "*",
"php-coveralls/php-coveralls": "~1.0",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"check-quality-code": [
"php-cs-fixer fix --dry-run --config=.php_cs.dist --allow-risky=yes -vvv",
"phpcs --standard=phpcs.xml.dist -s",
"phpmd lib text ./phpmd.lib.xml",
"phpmd tests text ./phpmd.test.xml --exclude OrmTestCase.php"
],
"phpcs": "phpcs --standard=phpcs.xml.dist -s",
"phpcsfixer": "php-cs-fixer --config=.php_cs.dist fix --allow-risky=yes -vvv",
"phpmd": [
"phpmd lib text ./phpmd.lib.xml",
"phpmd tests text ./phpmd.test.xml --exclude OrmTestCase.php"
],
"test-mysql": "phpunit --configuration phpunit.mysql.xml",
"test-pgsql": "phpunit --configuration phpunit.pgsql.xml"
},
"autoload": {
"psr-0": {
"CrEOF\\Spatial": "lib/"
}
}
}