-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·32 lines (32 loc) · 989 Bytes
/
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
{
"name": "terdelyi/php-template",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.3.3",
"mockery/mockery": "^1.6.6",
"phpstan/phpstan": "^1.10.33",
"phpstan/phpstan-mockery": "^1.1.1",
"friendsofphp/php-cs-fixer": "^3.26"
},
"scripts": {
"tests": "vendor/bin/phpunit",
"tests-unit": "vendor/bin/phpunit --testsuite unit --no-coverage --no-logging",
"tests-functional": "vendor/bin/phpunit --testsuite functional --no-coverage --no-logging",
"check-style": "vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes --diff --verbose",
"fix-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"static-analysis": "vendor/bin/phpstan analyse src tests"
}
}