waltersilvacruz / laravel-b2bwave
PHP client wrapping the B2BWave API.
1.0.1
2021-10-19 22:51 UTC
Requires
- php: >=8.0
- guzzlehttp/guzzle: ^6.3
README
PHP client wrapping the B2BWave API.
This package was designed to work with Laravel, so this package is written with Laravel in mind.
Installation
Install Laravel B2BWave API Cliente:
$ composer require waltersilvacruz/laravel-b2bwave
The package uses the auto registration feature of Laravel.
Configuration
-
Add the appropriate values to your
.env
B2BWAVE_APP_CODE=<API App Code> B2BWAVE_TOKEN=<API Token>
-
Publish configuration file
Config
A configuration file named
b2bwave.php
can be published toconfig/
by running...php artisan vendor:publish --tag=b2bwave-config
Usage
Here is an example of getting the customer's information from B2bWave:
$b2bwave = app('B2BWaveClient'); $options = [ 'name' => 'John Doe' ]; $response = $b2bwave->customers()->search($array); dd($response);