-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
37 lines (37 loc) · 1004 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
{
"name": "corneltek/cliframework",
"homepage": "http://github.com/c9s/CLIFramework",
"description": "Command-line framework for PHP",
"keywords": [
"command",
"command-line",
"completion",
"zsh",
"framework",
"getopt"
],
"require": {
"php": ">=7.2.0",
"corneltek/getoptionkit": "~2.6.1",
"universal/universal": "2.0.x-dev",
"corneltek/codegen": "4.0.x-dev",
"pimple/pimple": "*",
"symfony/finder": "~2.8|~3.0|^5.3.4",
"symfony/class-loader": "~2.8|~3.0|~3.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
"satooshi/php-coveralls": "^1",
"ext-intl": "*"
},
"license": "MIT",
"authors": [
{ "name": "Yo-An Lin", "email": "yoanlin93@gmail.com" }
],
"autoload": {
"psr-4": {
"CLIFramework\\": "src/"
}
},
"extra": { "branch-alias": { "dev-master": "4.1.x-dev" } }
}