-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.16 KB
/
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": "danbettles/command-line-tools",
"description": "Comprises just a few basic classes that make it easier to write command-line scripts. Use this when the might of something like Symfony Console would be like taking a sledgehammer to a thumbtack.",
"license": "ISC",
"authors": [
{
"name": "Daniel Bettles",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.1.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"danbettles/codesniffer-standard": "^2.0",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {"DanBettles\\CommandLineTools\\": "src/"}
},
"autoload-dev": {
"psr-4": {"DanBettles\\CommandLineTools\\Tests\\": "tests/src/"}
},
"scripts": {
"app:test": "phpunit --bootstrap=vendor/autoload.php --colors=always tests",
"app:lint": "phpcs --standard=phpcs.xml",
"app:analyse": "phpstan analyse -c phpstan.neon",
"app:check-quality": [
"@app:test",
"@app:lint",
"@app:analyse"
]
}
}