biila-pay / laravel-api-wrapper
Provides Biila Pay API wrapper for Laravel
v1.1.0
2021-10-14 08:35 UTC
Requires
- php: >=7.4
- guzzlehttp/guzzle: ^6.5.5 || ^7.0.1
- illuminate/http: ^7.0 || ^8.0
- illuminate/support: ^7.0 || ^8.0
Requires (Dev)
- mockery/mockery: ^1.3
- phpunit/phpunit: ^8.5
README
This package provides a streamlined access to the Biila Pay API within your Laravel project.
Installation
Run the following command in the root folder of your Laravel project.
composer require biila-pay/laravel-api-wrapper
Config values
BIILA_PAY_API_TOKEN (required)
Token that grants access to the API.
Examples
Get payment
use BiilaPay\LaravelApiWrapper\Facades\BiilaPayApi; $payment = BiilaPayApi::getPayment('7eb726a0-2c1f-4c4a-b736-6aa46732a6d7')->json(); // OR $payment = BiilaPayApi::get('payment/7eb726a0-2c1f-4c4a-b736-6aa46732a6d7')->json();