kaankilic/waite

Laravel 5.x - Github based application update and versioning library
13
Install
composer require kaankilic/waite
PHP:>=5.5.9
License:MIT
Last Updated:May 17, 2017
Links: GitHub  ·  Packagist
Maintainer: kaankilic

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

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444