-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 909 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
33
34
35
36
{
"name": "samuelgfeller/slim-error-renderer",
"description": "Slim 4 error handling middleware and exception page renderer",
"type": "project",
"license": "MIT",
"keywords": [
"error",
"handler",
"renderer",
"slim"
],
"require": {
"php": "^8.2",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"SlimErrorRenderer\\": "src/"
}
},
"scripts": {
"stan": "phpstan analyse -c phpstan.neon --no-progress --ansi",
"cs:check": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --config=.cs.php --ansi",
"cs:fix": "php-cs-fixer fix --config=.cs.php --ansi --verbose",
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"test:all": [
"@cs:check",
"@sniffer:check"
]
}
}