-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.34 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.34 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
48
49
50
51
52
{
"name": "php-school/cli-menu",
"description": "A command line menu helper in PHP",
"keywords": ["cli", "console", "terminal", "phpschool", "php-school", "menu"],
"license": "MIT",
"authors": [
{
"name": "Michael Woodward",
"email": "mikeymike.mw@gmail.com"
},
{
"name": "Aydin Hassan",
"email": "aydin@hotmail.com"
}
],
"require-dev": {
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "*"
},
"require": {
"php" : ">=8.2",
"beberlei/assert": "^2.4 | ^3",
"php-school/terminal": "^0.2.1",
"ext-posix": "*",
"ext-mbstring": "*"
},
"autoload" : {
"psr-4" : {
"PhpSchool\\CliMenu\\": "src"
},
"files" : [
"src/Util/ArrayUtils.php"
]
},
"autoload-dev": {
"psr-4": { "PhpSchool\\CliMenuTest\\": "test/" }
},
"scripts" : {
"cs-dry-run" : [
"php-cs-fixer check src --rules=@PSR12",
"php-cs-fixer check test --rules=@PSR12"
],
"cs" : [
"php-cs-fixer fix src --rules=@PSR12",
"php-cs-fixer fix test --rules=@PSR12"
],
"static" : [
"phpstan analyse src --level=7"
]
}
}