https://github.com/orumad/laravel-redsys-gateway
Laravel integration for Redsys Payment Gateway (Spain)
https://github.com/orumad/laravel-redsys-gateway
Last synced: 4 months ago
JSON representation
Laravel integration for Redsys Payment Gateway (Spain)
- Host: GitHub
- URL: https://github.com/orumad/laravel-redsys-gateway
- Owner: orumad
- License: mit
- Created: 2020-07-06T06:41:11.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-22T11:18:14.000Z (about 4 years ago)
- Last Synced: 2025-01-10T06:58:36.834Z (6 months ago)
- Language: PHP
- Size: 74.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel integration for Redsys Payment Gateway (Spain)
[](https://packagist.org/packages/orumad/laravel-redsys-gateway)
[](https://travis-ci.org/orumad/laravel-redsys-gateway)
[](https://github.styleci.io/repos/277463084)
[](https://packagist.org/packages/orumad/laravel-redsys-gateway)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.
## Instalation
You can add the package to your Laravel app as usual:
```bash
composer require orumad/laravel-redsys-gateway
```The package comes with two tables migrations used to store all the payments data (requests, notifications/responses):
```bash
php artisan vendor:publish --provider="Orumad\LaravelRedsys\LaravelRedsysServiceProvider" --tag="migrations"
```After that you can create the tables:
```bash
php artisan migrate
```You can publish the config file:
```bash
php artisan vendor:publish --provider="Orumad\LaravelRedsys\LaravelRedsysServiceProvider" --tag="config"
```## How to use
_(wip)_
## Testing
You can test as usual:
```bash
vendor/bin/phpunit
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.