WAAVI is a web development studio based in Madrid, Spain. You can learn more about us at waavi.com
You may install the package via composer
composer require waavi/redsys 1.x
Add the service provider:
// config/app.php
'providers' => [
...
\Waavi\Redsys\RedsysServiceProvider::class,
];
To enable the Redsys facade:
// config/app.php
'aliases' => [
...
'Redsys' => \Waavi\Redsys\Facades\Redsys::class,
];
Publish the config file
php artisan vendor:publish --provider="Waavi\Redsys\ResponseCacheServiceProvider"