-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.23 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"name": "berbeflo/modify-dump",
"description": "A small library that makes use of php8 attributes to modify the var_dump output of objects",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Berbeflo\\ModifyDump\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Berbeflo\\ModifyDump\\Tests\\": "tests/"
}
},
"require-dev": {
"php": ">=8.0",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^0.12.99",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"run-ci" : [
"phpcs --standard=PSR12 --exclude=PSR12.Files.FileHeader --report=xml src/",
"phpstan analyse src --level=5"
],
"check-cs" : [
"phpcs --standard=PSR12 --report=xml --exclude=PSR12.Files.FileHeader src/"
],
"check-stan" : [
"phpstan analyse src --level=5"
],
"run-tests" : [
"@php vendor/bin/phpunit --coverage-html cc --whitelist src --testdox --bootstrap tests/bootstrap.php tests"
],
"run-tests-without-cc" : [
"phpunit --whitelist src --testdox --bootstrap tests/bootstrap.php tests"
]
}
}