-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (40 loc) · 975 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": "thinframe/command_line",
"type": "library",
"homepage": "http://thinframe.net",
"description": "CLI support for PHP applications.",
"keywords": ["thinframe", "command line", "cli"],
"license": "MIT",
"authors": [
{
"name": "Sorin Badea",
"email": "[email protected]",
"homepage": "http://sorinbadea.me",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"thinframe/foundation": "@stable",
"thinframe/pcntl": "@stable"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"ThinFrame\\CommandLine\\": "src/"
}
},
"bin": [
"bin/.thinframerc",
"bin/thinframe-installer",
"bin/thinframe-completion",
"bin/thinframe"
],
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}