dev-master
9999999-devLaravel 5.x - Github based application update and versioning library
MIT
The Requires
- php >=5.5.9
- chumper/zipper 1.0.1
The Development Requires
by Kaan Kılıç
Laravel 5.x - Github based application update and versioning library
Waite is Laravel based self-application updating library. If you want to update your codes from your application, You can simply use Waite., (*1)
You can install the package via composer:, (*2)
composer require kaankilic/kaankilic
or require the tool in your composer.json file., (*3)
"kaankilic/kaankilic": "^1.0"
then run composer install
command from your command line., (*4)
Once Waite is installed you need to register the service provider.Open up config/app.php and add the provider key of tool., (*5)
'providers' => array( ... Kaankilic\Waite\Providers\WaiteServiceProvider::class, )
After that, you need to register the facade in the aliases key of your config/app.php file., (*6)
'aliases' => array( ... aliases 'Waite'=> Kaankilic\ServerUp\Facades\Waite::class, )
Finally, from the command line again, publish the default configuration file:, (*7)
php artisan vendor:publish --provider="Kaankilic\ServerUp\Providers\ServerUpServiceProvider"
Simple Usage, (*8)
Waite::update();
Laravel 5.x - Github based application update and versioning library
MIT