kaankilic / waite
Laravel 5.x - Github based application update and versioning library
dev-master
2017-05-17 08:37 UTC
Requires
- php: >=5.5.9
- chumper/zipper: 1.0.1
Requires (Dev)
- mockery/mockery: ^0.9.4
- orchestra/testbench: ^3.0
- phpunit/phpunit: ^4.8 || ^5.0
This package is auto-updated.
Last update: 2024-11-13 00:31:12 UTC
README
Waite is Laravel based self-application updating library. If you want to update your codes from your application, You can simply use Waite.
Installation
You can install the package via composer:
composer require kaankilic/kaankilic
or require the tool in your composer.json file.
"kaankilic/kaankilic": "^1.0"
then run composer install
command from your command line.
Once Waite is installed you need to register the service provider.Open up config/app.php and add the provider key of tool.
'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.
'aliases' => array( ... aliases 'Waite'=> Kaankilic\ServerUp\Facades\Waite::class, )
Finally, from the command line again, publish the default configuration file:
php artisan vendor:publish --provider="Kaankilic\ServerUp\Providers\ServerUpServiceProvider"
Usage
Simple Usage
Waite::update();