-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathcomposer.json
55 lines (55 loc) · 1.37 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
55
{
"name": "inhere/console",
"type": "library",
"description": "a 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": "http://www.yzone.net/"
}
],
"require": {
"php": ">7.3.0",
"symfony/polyfill-php80": "~1.0",
"toolkit/cli-utils": "~1.0",
"toolkit/fsutil": "~1.0",
"toolkit/pflag": "~1.0",
"toolkit/stdlib": "~1.0",
"toolkit/sys-utils": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^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"
}
}