apriil / payment
There is no license information available for the latest version (v3.3.2) of this package.
v3.3.2
2026-04-20 15:04 UTC
Requires
- apility/nets-easy: ^2.2
- apility/seotools: ^1.0|^2.0
- chillerlan/php-qrcode: ^4.3
- illuminate/routing: ^8.0|^9.0|^10.0|^11.0|^12
- illuminate/support: ^8.0|^9.0|^10.0|^11.0|^12
- netflex/commerce: ^5.4|^6.0
- netflex/renderer: ^5.4|^6.0
This package is auto-updated.
Last update: 2026-07-03 15:31:30 UTC
README
Payment integration for Netflex commerce (Nets Easy and extensible processors).
Requirements
- PHP 8.4+
- Laravel 13 (
illuminate/supportandilluminate/routing^13.0) - Netflex Framework 7.x (
netflex/commerceandnetflex/renderer^7.0)
Install
composer require apriil/payment
Publish config and views when needed:
php artisan vendor:publish --tag=config --provider="Apriil\Payment\Providers\PaymentServiceProvider" php artisan vendor:publish --tag=views --provider="Apriil\Payment\Providers\PaymentServiceProvider"
CSRF / request forgery
Laravel 13 renames CSRF middleware to PreventRequestForgery. Payment callback
routes exclude that middleware automatically, but you should still whitelist
payment routes in your app middleware when required:
App\Http\Middleware\PreventRequestForgery— exclude or except payment callback paths as documented in the Laravel 13 upgrade guide.
Migrating from apility/payment
| Was | Now |
|---|---|
apility/payment |
apriil/payment:^1.0 |
Apility\Payment\… |
Apriil\Payment\… |
apility/nets-easy |
apriil/nets-easy:^1.0 |
VerifyCsrfToken middleware docs |
PreventRequestForgery |
- Require
netflex/framework:^7.0andapriil/payment:^1.0. - Replace
Apility\Paymentimports and config FQCNs withApriil\Payment. - Upgrade app CSRF middleware per Laravel 13.
- Re-publish config if
config/payment.phpstill references old class names.