This package allows you to integrate the spanish payment gateway Redsys in your Laravel app. It can manage all the flow (requests / responses) needed to make payments throught the Redsys platform.
You can add the package to your Laravel app as usual:
composer require orumad/laravel-redsys-gatewayThe package comes with two tables migrations used to store all the payments data (requests, notifications/responses):
php artisan vendor:publish --provider="Orumad\LaravelRedsys\LaravelRedsysServiceProvider" --tag="migrations"After that you can create the tables:
php artisan migrateYou can publish the config file:
php artisan vendor:publish --provider="Orumad\LaravelRedsys\LaravelRedsysServiceProvider" --tag="config"(wip)
You can test as usual:
vendor/bin/phpunitPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email dev@danielmunoz.io instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.