-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
54 lines (54 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "inhere/console",
"type": "library",
"description": "php console library, provide console argument parse, console controller/command run, color style, user interactive, information show.",
"keywords": [
"cli",
"phar",
"color",
"console",
"console-color",
"command",
"command-line",
"console-application"
],
"homepage": "https://github.com/inhere/php-console",
"license": "MIT",
"authors": [
{
"name": "inhere",
"email": "[email protected]",
"homepage": "https://github.com/inhere"
}
],
"require": {
"php": ">8.0.1",
"toolkit/cli-utils": "~2.0",
"toolkit/fsutil": "~2.0",
"toolkit/pflag": "~2.0",
"toolkit/stdlib": "^2.0",
"toolkit/sys-utils": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.1"
},
"autoload": {
"psr-4": {
"Inhere\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inhere\\ConsoleTest\\": "test/"
}
},
"suggest": {
"symfony/process": "php process operation",
"padraic/phar-updater": "A thing to make PHAR self-updating easy and secure.",
"text/template": "Single-Class string template engine for PHP5/7 supporting if/loops/filters"
},
"scripts": {
"check-cs": "./php-cs-fixer fix --dry-run --diff --diff-format=udiff",
"cs-fix": "./php-cs-fixer fix"
}
}