laravel payment
3.0.0
? Laravel 的 Omnipay 服务提供商。
$ composer require overtrue/laravel-payment -v
更新composer后,如果您使用的laravel版本<5.5,则需要注册服务提供者:
// config/app.php
' providers ' => [
//...
Overtrue LaravelPayment ServiceProvider::class,
],
并发布配置文件:
$ php artisan vendor:publish --provider=Overtrue \ LaravelPayment \ ServiceProvider
如果你想使用门面模式,你可以注册一个你想要使用的门面名称,例如LaravelPayment
:
// config/app.php
' aliases ' => [
' LaravelPayment ' => Overtrue LaravelPayment Facade::class, // This is default in laravel 5.5
],
// config/payments.php
// The default gateway name which configured in `gateways` section.
' default_gateway ' => ' paypal ' ,
// The default options for every gateways.
' default_options ' => [
' test_mode ' => true ,
// ...
],
/*
* The gateways, you can config option by camel case or snake_case name.
*
* the option name is followed from gateway class, for example:
*
* $gateway->setMchId('overtrue');
*
* you can configured as:
* 'mch_id' => 'overtrue',
* or:
* 'mchId' => 'overtrue',
*/
' gateways ' => [
' paypal ' => [
' driver ' => ' PayPal_Express ' ,
' options ' => [
' username ' => env ( ' PAYPAL_USERNAME ' ),
' password ' => env ( ' PAYPAL_PASSWORD ' ),
' signature ' => env ( ' PAYPAL_SIGNATURE ' ),
' test_mode ' => env ( ' PAYPAL_TEST_MODE ' ),
],
],
// other gateways
],
您需要安装要使用的网关:omnipay# payment-gateways
网关实例:
LaravelPayment:: gateway ( ' GATEWAY NAME ' ); // GATEWAY NAME is key name of `gateways` configuration.
LaravelPayment:: gateway ( ' alipay ' );
LaravelPayment:: gateway ( ' paypal ' );
使用默认网关:
LaravelPayment:: purchase (...);
例子:
$ formData = [
' number ' => ' 4242424242424242 ' ,
' expiryMonth ' => ' 6 ' ,
' expiryYear ' => ' 2030 ' ,
' cvv ' => ' 123 '
];
$ response = LaravelPayment::purchase([
' amount ' => ' 10.00 ' ,
' currency ' => ' USD ' ,
' card ' => $ formData ,
))-> send ();
if ( $ response -> isRedirect ()) {
// redirect to offsite payment gateway
$ response -> redirect ();
} elseif ( $ response -> isSuccessful ()) {
// payment was successful: update database
print_r ( $ response );
} else {
// payment failed: display message to customer
echo $ response -> getMessage ();
}
更多关于Omnipay的使用请参考Omnipay官方主页
想知道如何从零开始构建 PHP 扩展包?
请关注我的实战课程,我会在本课程中分享一些扩展包开发经验——《PHP扩展包实战教程 - 从入门到发布》
麻省理工学院