Laravel Initializer

A convenient way to initialize your application

Description

We all know, that every application should contain readme file and Installation section with list of actions that you should to do for preparing an application to work. Some of those actions you should do on every application update (composer update, git pull...) or branch change (git checkout) for preparing an application to work. Laravel Initializer gives you the ability to declare these processes and run it by simple app:install and app:update artisan commands, which run predefined actions chain depending on the current environment.
Visit Site
Related Projects