-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "danc0/gimliduck-php",
"type": "library",
"description": "GimliDuck is an adaptable micro PHP framework that tries to stay out of your way.",
"authors": [
{
"name": "dvnc0",
"email": "dcobb.dev@gmail.com"
}
],
"license": "Unlicense",
"config": {
"vendor-dir": "src/vendor"
},
"autoload": {
"psr-4": {
"Gimli\\": "src/App/"
},
"files": [
"src/App/Http/helpers.php",
"src/App/Database/helpers.php",
"src/App/Injector/helpers.php",
"src/App/Environment/helpers.php",
"src/App/Events/helpers.php",
"src/App/View/helpers.php"
]
},
"require": {
"php": ">=8.1",
"latte/latte": ">=3.0"
},
"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"
}
}