-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.4 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "danc0/gimliduck-devtools",
"type": "library",
"description": "Devtools for the GimliDuck project",
"authors": [
{
"name": "dvnc0",
"email": "dcobb.dev@gmail.com"
}
],
"license": "Unlicense",
"config": {
"vendor-dir": "src/vendor"
},
"bin": [
"src/bin/gimli"
],
"autoload": {
"psr-4": {
"GimliDev\\": "src/App/"
},
"files": [
"src/App/helpers.php"
]
},
"require": {
"php": ">=8.1",
"danc0/clyde": ">=0.7.0",
"symfony/yaml": "^7.0",
"laravel/prompts": "^0.1.24",
"nette/php-generator": "^4.1"
},
"require-dev": {
"phpunit/phpunit": ">=11",
"squizlabs/php_codesniffer": ">3.7",
"phpstan/phpstan": ">1.8",
"phpunit/php-code-coverage": ">9.2"
},
"scripts": {
"test": "src/vendor/bin/phpunit src/tests/",
"coverage": "src/vendor/bin/phpunit --coverage-html src/tests/coverage/ src/tests/",
"view": "xdg-open src/tests/coverage/index.html",
"stan": "src/vendor/bin/phpstan analyse -c phpstan.neon",
"phpcs": "src/vendor/bin/phpcbf -p --colors --standard=phpcs.xml src/App --ignore=*/tmp/*; src/vendor/bin/phpcs -n --colors --standard=phpcs.xml src/App --ignore=*/tmp/*",
"check": "composer run-script test; composer run-script stan; composer run-script phpcs"
}
}