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
Requires
- php: >=5.6.4
 - guzzlehttp/guzzle: ~5.3.0
 - hipchat/hipchat-php: ^1.4
 - illuminate/cache: 5.3.x
 - illuminate/config: 5.3.x
 - illuminate/console: 5.3.x
 - illuminate/database: 5.3.x
 - illuminate/filesystem: 5.3.x
 - illuminate/support: 5.3.x
 - nesbot/carbon: ~1.0
 - php-units-of-measure/php-units-of-measure: ^2.1
 - ramsey/uuid: ^3.5
 
This package is auto-updated.
Last update: 2025-10-07 12:41:18 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