-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.91 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "g4/runner",
"description": "g4 application runner - bootstrapper",
"keywords": [
"application",
"bootstrap",
"run"
],
"license": "MIT",
"authors": [
{
"name": "Dejan Samardzija",
"email": "samardzija.dejan@gmail.com"
},
{
"name": "Drasko Gomboc",
"email": "drasko.gomboc@gmail.com"
},
{
"name": "Ivan Krickovic",
"email": "ivan.krickovic@gmail.com"
}
],
"autoload": {
"psr-4": {"G4\\Runner\\": "src/"}
},
"require": {
"php" : ">=8.3",
"aura/accept" : "4.*",
"g4/clean-core" : "*",
"g4/http" : "*",
"g4/di" : "*",
"g4/profiler" : ">=1.12.0",
"g4/factory" : "1.*",
"twig/twig" : "*",
"g4/version": "0.0.*"
},
"require-dev": {
"phpunit/phpunit" : "^11.5",
"squizlabs/php_codesniffer" : "*",
"g4/code-coverage" : "*"
},
"scripts": {
"unit-test": [
"php8.3 vendor/bin/phpunit -c tests/unit/phpunit.xml --colors=always"
],
"test-coverage": [
"XDEBUG_MODE=coverage php8.3 ./vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-text --coverage-html tests/unit/coverage"
],
"test-report": [
"XDEBUG_MODE=coverage php8.3 ./vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-clover=tests/unit/coverage/code-coverage.xml"
],
"code-coverage": [
"php8.3 ./vendor/bin/code-coverage -p 50 -f tests/unit/coverage/code-coverage.xml"
],
"psr2": [
"php8.3 ./vendor/bin/phpcs --colors --standard=PSR2 src/"
],
"psr2-fix": [
"php8.3 ./vendor/bin/phpcbf --colors --standard=PSR2 src/"
]
}
}