haslv/ipbwi is a Laravel package for ipbwi integration for laravel.
It currently has 9 GitHub stars and 222 downloads on Packagist (latest version 1.1.0).
Install it with composer require haslv/ipbwi.
Discover more Laravel packages by haslv
or browse all Laravel packages to compare alternatives.
Last updated
[IPBWI] 1 integration for Laravel 5.x. Powered by [HAS.LV] 2.
Add package to composer.json
"require": {
"haslv/ipbwi": "1.1.*"
}
For Laravel 4.x use version 1.0.3 which uses IPBWI 3.6.6
Update composer:
composer update
Add service provider to app/config/app.php
'Haslv\Ipbwi\IpbwiServiceProvider',
Add facade to app/config/app.php
'IPBWI' => 'Haslv\Ipbwi\Facade',
Publish config file:
php artisan vendor:publish
You can access IPBWI from facade.
Old usage:
$member_info = $ipbwi->member->info();
New usage:
$member_info = IPBWI::member()->info();