menthol / scripts-dev
This package is abandoned and no longer maintained.
The author suggests using the neronmoon/scriptsdev package instead.
Laravel Scripts-Dev, execute dev scripts on development environment.
dev-master
2014-08-30 07:11 UTC
Requires
- php: >=5.3.7
- illuminate/console: 4.x
- illuminate/support: 4.*
- symfony/process: 2.*
This package is not auto-updated.
Last update: 2022-02-01 12:38:49 UTC
README
This packages execute all commands added into composer scripts-dev directive.
Installation
Require this package in your composer.json and run composer update (or run composer require menthol/scripts-dev:dev-master
directly):
"menthol/scripts-dev": "dev-master"
After updating composer, add the ServiceProvider to the providers array in app/config/app.php
'Menthol\ScriptsDev\ScriptsDevServiceProvider',
Publish the config.
php artisan config:publish menthol/scripts-dev
Configure your local dev environment by adding 'dev' => true,
to your local package config file.
You can configure your composer.json.
In each scripts step add php artisan scripts-dev {step}
"scripts":{
"post-update-cmd":[
"php artisan clear-compiled",
"php artisan optimize",
"php artisan scripts-dev post-update-cmd"
]
},
Now you can add your dev commands
"scripts-dev":{
"post-update-cmd":[
"php artisan ide-helper:generate"
]
},