haslv / ipbwi
IPBWI integration for Laravel
Installs: 222
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 6
Forks: 3
Open Issues: 1
pkg:composer/haslv/ipbwi
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-10-11 21:53:52 UTC
README
[IPBWI] 1 integration for Laravel 5.x. Powered by [HAS.LV] 2.
Installation
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
Usage
You can access IPBWI from facade.
Old usage:
$member_info = $ipbwi->member->info();
New usage:
$member_info = IPBWI::member()->info();