2017 © Pedro Peláez
 

library waite

Laravel 5.x - Github based application update and versioning library

image

kaankilic/waite

Laravel 5.x - Github based application update and versioning library

  • Wednesday, May 17, 2017
  • by kaankilic
  • Repository
  • 1 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

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., (*1)

Installation

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"

Usage

Simple Usage, (*8)

    Waite::update();

The Versions

17/05 2017

dev-master

9999999-dev

Laravel 5.x - Github based application update and versioning library

  Sources   Download

MIT

The Requires

 

The Development Requires

by Kaan Kılıç