csp-it/whaai-api

There is no license information available for the latest version (dev-master) of this package.

Laravel package to access the whaai api

dev-master 2017-05-16 19:59 UTC

README

Installation of Whaai API Package on Laravel project

Install Laravel Project

First, download the Laravel installer using Composer:

composer global require "laravel/installer"

Once installed, the laravel new command will create a fresh Laravel installation in the directory you specify. For instance, laravel new blog will create a directory named blog containing a fresh Laravel installation with all of Laravel's dependencies already installed:

laravel new blog

Configure Whaai API Package

Add Whaai API Package Service Provider on config/app.php

Whaai\WhaaiApi\WhaaiApiServiceProvider::class,

Add Application Service Provider on config/app.php

App\Providers\ComposerServiceProvider::class,

Run composer install

composer install

Run composer update

composer update

Run Migrations

php artisan migrate