-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.98 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.98 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
60
61
62
63
64
65
66
67
{
"name": "district09/gent-lez",
"description": "Check if given coordinates are within the Gent LEZ (Low Emission Zone).",
"license": "MIT",
"type": "library",
"keywords": [
"district09",
"services",
"gent",
"stad gent",
"LEZ"
],
"authors": [
{
"name": "Peter Decuyper",
"email": "peter.decuyper@district09.gent"
}
],
"homepage": "https://github.com/district09/php_package_d09-gent-lez",
"require": {
"php": "^8.3",
"ext-json": "*",
"digipolisgent/api-client": "^3.0",
"digipolisgent/value": "^3.0",
"proj4php/proj4php": "^2.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"district09/qa-php": "^2.2",
"rector/rector": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"District09\\Gent\\Lez\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"District09\\Tests\\Gent\\Lez\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
},
"sort-packages": true
},
"extra": {
"grumphp": {
"config-default-path": "vendor/district09/qa-php/configs/grumphp.yml"
}
},
"scripts": {
"post-install-cmd": "vendor/bin/grumphp git:init",
"coverage": "vendor/bin/phpunit --configuration=phpunit.qa-php.xml --coverage-html build/coverage",
"grumphp": "vendor/bin/grumphp run",
"phpcpd": "vendor/bin/grumphp run --tasks=phpcpd",
"phpcs": "vendor/bin/grumphp run --tasks=phpcs",
"phpmd": "vendor/bin/grumphp run --tasks=phpmd",
"phpstan": "vendor/bin/grumphp run --tasks=phpstan",
"phpunit": "vendor/bin/phpunit --configuration=phpunit.qa-php.xml"
}
}