sander-van-hooft/laravel-payable-redirect-mollie
Composer 安装命令:
composer require sander-van-hooft/laravel-payable-redirect-mollie
包简介
Associate Mollie payments with Laravel Eloquent models
README 文档
README
Implementing Mollie payments in your Laravel 5.4 app does not have to be difficult. This package helps you by creating payment records and keeping the status in sync with Mollie. It is built on top of the very solid official Mollie PHP client. It supports one-off payments only; recurring payments are not (yet) supported.
Structure
config/
database/
docs/
routes/
src/
tests/
Install
Via Composer
$ composer require sander-van-hooft/laravel-payable-redirect-mollie
Next, you must install the service provider:
// config/app.php 'providers' => [ ... SanderVanHooft\PayableRedirect\PayableRedirectServiceProvider::class, ];
And add the Mollie API key to the .env file in your project root.
This is also where you can override the webhook route which Mollie calls when a payment status is updated:
# /.env: ... MOLLIE_KEY=YOUR_MOLLIE_API_KEY_HERE # MOLLIE_WEBHOOK_URL=your_url_relative/to_your_app_url
You can publish the migration with:
$ php artisan vendor:publish --provider="SanderVanHooft\PayableRedirect\PayableRedirectServiceProvider" --tag="migrations"
After the migration has been published you can create the payments-table by running the migrations:
$ php artisan migrate
Laravel automatically loads the routes from this package.
If you prefer this over configuring using the .env file (not required!) you can also publish the payable.php config file with:
$ php artisan vendor:publish --provider="SanderVanHooft\PayableRedirect\PayableRedirectServiceProvider" --tag="config"
In the config file, you can set the MOLLIE api key and override the default mollie payment webhook route. This is what the default config file looks like:
return [ 'mollie' => [ 'key' => env('MOLLIE_KEY', 'test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'), 'webhook_url' => env('MOLLIE_WEBHOOK_URL', '/webhooks/payments/mollie'), ], ];
Usage
Basic usage
In your code, create a Payment record using the MolliePaymentGateway:
// Using some App\Order model (provided by you) $order = new App\Order(['amount' => 12345]); $order->save(); $paymentGateway = new SanderVanHooft\PayableRedirect\MolliePaymentGateway; $payment = $paymentGateway->chargeAmountForPayable( $order->amount, // AMOUNT IN CENTS!! $order, 'Some description', [ 'return_url' => 'http://some-return-url.com' ] );
The payment amount is in eurocents!
The payment status will be kept in sync with Mollie: Mollie will call the webhook whenever the payment status changes. This will trigger your app to fetch the latest payment status from Mollie. Mollie has designed this process in this way for security reasons.
IsPayableTrait
For convenience you can use the isPayableTrait on your payable Eloquent model (the App\Order model in the example above). This enables you to call $order->payments.
use Illuminate\Database\Eloquent\Model; use SanderVanHooft\PayableRedirect\Payment; use SanderVanHooft\PayableRedirect\IsPayable\IsPayableTrait; class Order extends Model { use IsPayableTrait; }
Events
PaymentEvents are dispatched for easy integration with your own custom listeners (see Laravel events and listeners). The following events are available:
- PaymentUpdated: this event is dispatched when Mollie calls the webhook. It checks whether the payment status really has changed. Depending on the new status, it dispatches one of the Mollie based events below.
- PaymentCancelled
- PaymentChargedBack
- PaymentExpired
- PaymentFailed
- PaymentOpened
- PaymentPaid
- PaymentPaidOut
- PaymentPending
- PaymentRefunded
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
Please mind that for testing the payment status synchronisation your app needs to be reachable on a public url by Mollie. Therefore, under normal circumstances, you cannot fully test this functionality on a local Laravel installation.
Make sure to configure the Mollie API key (MOLLIE_KEY) as an environment variable. This can for example be done in the phpunit.xml file.
$ composer test
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email info@sandervanhooft.nl instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
sander-van-hooft/laravel-payable-redirect-mollie 适用场景与选型建议
sander-van-hooft/laravel-payable-redirect-mollie 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 493 次下载、GitHub Stars 达 21, 最近一次更新时间为 2017 年 05 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「redirect」 「mollie」 「laravel」 「eloquent」 「SanderVanHooft」 「payable」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 sander-van-hooft/laravel-payable-redirect-mollie 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sander-van-hooft/laravel-payable-redirect-mollie 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 sander-van-hooft/laravel-payable-redirect-mollie 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Redirects TYPO3 visitors automatic or with a suggestlink to another language and/or root page.
eCurring API client library for PHP.
Multishipping support for the Mollie Payment Module for Magento 2
Mollie API client library for PHP. Mollie is a European Payment Service provider and offers international payment methods such as Mastercard, VISA, American Express and PayPal, and local payment methods such as iDEAL, Bancontact, SOFORT Banking, SEPA direct debit, Belfius Direct Net, KBC Payment But
Mollie SMS PHP API Repository. Composer-ready.
Advanced TYPO3 redirect management for sys_redirect with regex and host/language-aware matching, CSV/.htaccess import/export, categories and priority, automatic slug redirect workflows, plus hit/log analytics.
统计信息
- 总下载量: 493
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-24