-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
41 lines (41 loc) · 1011 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
37
38
39
40
41
{
"name": "php-school/terminal",
"description": "A command line terminal utility in PHP",
"keywords": ["cli", "console", "terminal", "phpschool", "php-school"],
"license": "MIT",
"authors": [
{
"name": "Michael Woodward",
"email": "[email protected]"
},
{
"name": "Aydin Hassan",
"email": "[email protected]"
}
],
"require": {
"php" : ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^0.9.2"
},
"autoload" : {
"psr-4" : {
"PhpSchool\\Terminal\\": "src"
}
},
"autoload-dev": {
"psr-4": { "PhpSchool\\TerminalTest\\": "test" }
},
"scripts" : {
"cs" : [
"phpcs src --standard=PSR2",
"phpcs test --standard=PSR2"
],
"static" : [
"phpstan analyse src --level=7"
]
}
}