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
- dev-main
- v3.3.2
- v3.3.1
- v3.3.0
- v3.2.8
- v3.2.7
- v3.2.6
- v3.2.5
- v3.2.4
- v3.2.3
- v3.2.2
- v3.2.1
- v3.2.0
- v3.1.5
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.1
- v2.0.0
- v2.0.0-RC2
- v2.0.0-RC1
- v1.x-dev
- v1.6.1
- v1.6.0
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.2
- v1.4.1
- v1.4.0
- v1.4.0-beta1
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.2
- v1.0.1
- v1.0.0
- dev-feature/events
- dev-feature/refunds
- dev-feature/languageOptions
- dev-feature/base-middlewares-and-complete-in-middleware
- dev-feature/multiple-payment-processors
This package is auto-updated.
Last update: 2026-06-03 15:21:04 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.