Add task bundle:uninstall, bundle:unpublish, migrate:rollback bundle, migrate:reset bundle.

This commit is contained in:
vtalbot
2012-09-20 22:15:29 -04:00
parent 6c55f9cf54
commit 8931369665
4 changed files with 94 additions and 2 deletions

View File

@@ -38,6 +38,10 @@
"description": "Install a bundle.",
"command": "php artisan bundle:install swiftmailer"
},
"bundle:uninstall": {
"description": "Uninstall a bundle, delete its public, rollback its migrations.",
"command": "php artisan bundle:uninstall swiftmailer"
},
"bundle:upgrade": {
"description": "Upgrade a bundle.",
"command": "php artisan bundle:upgrade swiftmailer"
@@ -45,6 +49,10 @@
"bundle:publish": {
"description": "Publish all bundles' assets.",
"command": "php artisan bundle:publish"
},
"bundle:unpublish": {
"description": "Delete all bundles' assets from the public directory.",
"command": "php artisan bundle:unpublish"
}
},
"Unit Testing": {