-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.59 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
{
"name": "glaivepro/sf",
"description": "SFA-SQL expression builder",
"license": "MIT",
"authors": [
{
"name": "Juris Evertovskis",
"email": "[email protected]",
"homepage": "https://github.com/tontonsb"
}
],
"homepage": "https://github.com/glaivepro/php-sf",
"keywords": [
"Simple features", "Simple feature access",
"SFA-SQL", "SQL-MM",
"PostGIS", "SpatiaLite",
"OpenGIS", "ISO 19125", "ISO 19107",
"Geo", "GIS", "Geometry", "Geography"
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ext-dom": "*",
"ext-mbstring": "*",
"ext-xdebug": "*",
"friendsofphp/php-cs-fixer": "^3.57",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"GlaivePro\\SF\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GlaivePro\\SF\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit --testsuite=DatabaseLess --coverage-text --colors --testdox",
"test-maria": "phpunit --testsuite=MariaIntegration --colors --testdox",
"test-my": "phpunit --testsuite=MyIntegration --colors --testdox",
"test-pg": "phpunit --testsuite=PGIntegration --colors --testdox",
"fix": "php-cs-fixer fix",
"cs": "@fix --dry-run --diff"
},
"scripts-descriptions": {
"test": "Run tests",
"fix": "Fix code style",
"cs": "Dry run CS fixer"
},
"extra": {
"laravel": {
"providers": [
"GlaivePro\\SF\\LaravelServiceProvider"
]
}
}
}