-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.02 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "ftven/cli-common",
"description": "Common CLI helpers classes",
"keywords": ["ftven", "common", "cli"],
"homepage": "https://github.com/francetv/php-cli-common",
"require": {
"ftven/common-lib": "1.*",
"symfony/dependency-injection": "2.5.*",
"symfony/http-foundation": "2.5.*",
"symfony/config": "2.5.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "1.*",
"kherge/box": "*"
},
"license": "MIT",
"authors": [
{
"name": "Olivier Hoareau",
"email": "olivier@phppro.fr",
"homepage": "http://www.phppro.fr",
"role": "Lead Developer"
}
],
"support": {
"email": "olivier@phppro.fr"
},
"minimum-stability": "stable",
"suggest": {
"ftven/cli-audit": "Audit CLI Tool"
},
"autoload": {
"psr-4": {
"Ftven\\Build\\Cli\\": "src/"
}
},
"config": {
"bin-dir": "bin/"
}
}