adelowo/laravel-gbowo
Composer 安装命令:
composer require adelowo/laravel-gbowo
包简介
Laravel bridge for the Gbowo payment library
README 文档
README
Installation
$ composer require adelowo/laravel-gbowo
- Append the
GbowoServiceProviderto theproviderkey inconfig/app.php
Gbowo\Bridge\Laravel\GbowoServiceProvider::class
- Set up a default adapter in
config/services.php
<?php //...other config values "gbowo" => [ "default" => "paystack" ];
This step is optionally but can be helpful when you are certain you wouldn't be switching adapters in multiple places in your app.
Only paystack and amplifypay are currently supported.
- Optional, you can also make use of facades by adding this to the
aliaseskey inconfig/app.php
"Gbowo" : Gbowo\Bridge\Laravel\Facades::class
Usage
Gbowo's official doc is highly recommendeded.
class BillingController extends Controller { public function chargeCustomer(Request $request) { $adapter = app("gbowo")->adapter("paystack"); // $adapter = app("gbowo")->adapter("amplifypay"); $data = ["email" => $request->get('email') , "amount" => $request->get('amount')]; return redirect($adapter->charge($data)); } }
Calling the
adaptermethod without passing in an adapter name would return an instance of the default adapter set in the config file.
Adding custom adapters
If you have written a custom adapter, you can include this in your app by doing what is obtainable below in a ServiceProvider of your choice.
$config = ["key" => "value", "other" => "stuff"]; //some bootstrap options your adapter might need. $this->app["gbowo"]->extend("voguepay" , function() use ($config)){ return new VoguePayAdapter($config); });
And you can access this new adapter anywhere in your code via
$voguePay = app("gbowo")->adapter("voguePay"); $voguePay->charge(['c' => 'd']);
Facades
use Gbowo\Bridge\Laravel\Facades Gbowo::adapter("paystack")->charge([]) //You can call any method on the facade as you would in the normal instance. Do check the api methods
API methods
createPaystackAdapter()createAmplifyPayAdapter()extend(string $adapterName, Closure $callback)adapter(string $name = null)
If
$nameis left null, the default adapter would be fetched by inspecting the value ofconfig.services.gbowo.default
License
统计信息
- 总下载量: 26
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-29