Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orumad/laravel-redsys-gateway
Laravel integration for Redsys Payment Gateway (Spain)
https://github.com/orumad/laravel-redsys-gateway
Last synced: 4 days 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 (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-22T11:18:14.000Z (over 3 years ago)
- Last Synced: 2024-04-17T23:01:56.280Z (7 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)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/orumad/laravel-redsys-gateway.svg?style=flat-square)](https://packagist.org/packages/orumad/laravel-redsys-gateway)
[![Build Status](https://travis-ci.org/orumad/laravel-redsys-gateway.svg?branch=master)](https://travis-ci.org/orumad/laravel-redsys-gateway)
[![StyleCI](https://github.styleci.io/repos/277463084/shield?branch=master)](https://github.styleci.io/repos/277463084)
[![Total Downloads](https://img.shields.io/packagist/dt/orumad/laravel-redsys-gateway.svg?style=flat-square)](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.