kaankilic / Waite by kaankilic

Laravel 5.x - Github based application update and versioning library
13
0
2
Package Data
Maintainer Username: kaankilic
Maintainer Contact: bl4cksta@gmail.com (Kaan Kılıç)
Package Create Date: 2017-05-12
Package Last Update: 2017-05-17
Language: PHP
License: MIT
Last Refreshed: 2025-02-05 15:00:14
Package Statistics
Total Downloads: 13
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Waite Tool

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();