forked from consolidation/robo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (51 loc) · 1.54 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
{
"name": "codegyre/robo",
"description": "Modern task runner",
"license": "MIT",
"authors": [
{
"name": "Davert",
"email": "davert.php@resend.cc"
}
],
"autoload":{
"psr-4":{
"Robo\\":"src"
}
},
"bin":["robo"],
"require": {
"php": ">=5.5.0",
"league/container": "~2.2",
"consolidation/log": "~1",
"consolidation/annotated-command": "~1",
"consolidation/output-formatters": "~1",
"symfony/finder": "~2.5|~3.0",
"symfony/console": "~2.5|~3.0",
"symfony/process": "~2.5|~3.0",
"symfony/filesystem": "~2.5|~3.0",
"symfony/event-dispatcher": "~2.5|~3.0"
},
"require-dev": {
"patchwork/jsqueeze": "~1.0",
"henrikbjorn/lurker": "~1.0",
"natxet/CssMin": "~3.0",
"pear/archive_tar": "~1.0",
"codeception/base": "~2.1.5",
"codeception/verify": "0.2.*",
"codeception/aspect-mock": "0.5.4",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "2.*"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"suggest": {
"pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
"henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
"patchwork/jsqueeze": "For minifying JS files in taskMinify",
"natxet/CssMin": "For minifying JS files in taskMinify"
}
}