71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"name": "consolidation/robo",
|
|
"description": "Modern task runner",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Davert",
|
|
"email": "davert.php@resend.cc"
|
|
}
|
|
],
|
|
"autoload":{
|
|
"classmap": [
|
|
"scripts/composer/ScriptHandler.php"
|
|
],
|
|
"psr-4":{
|
|
"Robo\\":"src"
|
|
}
|
|
},
|
|
"autoload-dev":{
|
|
"psr-4":{
|
|
"Robo\\":"tests/src"
|
|
}
|
|
},
|
|
"bin":["robo"],
|
|
"require": {
|
|
"php": ">=5.5.0",
|
|
"league/container": "^2.2",
|
|
"consolidation/log": "~1",
|
|
"consolidation/annotated-command": "^2.0.1",
|
|
"consolidation/output-formatters": "^2.1.2|~3",
|
|
"symfony/finder": "~2.5|~3.0",
|
|
"symfony/console": "~2.8|~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": "~2",
|
|
"henrikbjorn/lurker": "~1",
|
|
"natxet/CssMin": "~3",
|
|
"pear/archive_tar": "^1.4.2",
|
|
"codeception/base": "^2.2.6",
|
|
"codeception/verify": "^0.3.2",
|
|
"codeception/aspect-mock": "~1",
|
|
"satooshi/php-coveralls": "~1",
|
|
"squizlabs/php_codesniffer": "~2",
|
|
"phpunit/php-code-coverage": "~2|~4"
|
|
},
|
|
"scripts": {
|
|
"pre-install-cmd": [
|
|
"Robo\\composer\\ScriptHandler::checkDependencies"
|
|
],
|
|
"cs": "/robo sniff",
|
|
"test": "./robo test"
|
|
},
|
|
"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"
|
|
},
|
|
"replace": {
|
|
"codegyre/robo": "< 1.0"
|
|
}
|
|
}
|