Download the PHP package creagia/redsys-php without Composer

On this page you can find all versions of the php package creagia/redsys-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package redsys-php

Online payments with Redsys

Latest Version on Packagist Tests Total Downloads

Integrate your PHP code with Redsys, the lead payments gateway in Spain.

If you are using Laravel, check our other package creagia/laravel-redsys for a ready-to-use integration.

Installation

You can install the package via composer:

Usage

This package supports redirection and REST integration methods. You can learn more about the available integration methods on the official website.

Creating a request

First, you need to create a RedsysClient with your environment configuration. After that, you should create a RedsysRequest using your client and your RequestParameters.

Apart from the mandatory fields, you may define any extra optional field (like merchantUrl as the notification URL or urlOk and urlKo to redirect the users after paying) as your RequestParameters arguments.

Finally, you can return the redirection form with the getRedirectFormHtml() method or send the post request using the sendPostRequest(). Read more about those integration methods on the Redsys documentation:

Creating Credential-On-File (token) requests

While you can create Credential-On-File configuring your RequestParameters as defined on Redsys documentation, this packages provides some helpers to make it easier.

You can also send your request using the REST API as a post request:

Receive notifications from Redsys

If you defined the merchantUrl parameter during the payment request creation, Redsys will post that URL with the result, so you can execute any actions on an authorised or denied request.

Keep in mind that Redsys won't notify you on abandoned payments so this merchantUrl won't be notified for every payment request created. Only when the payment finishes. You should take care of abandoned/pending requests.

Custom environments

When creating a RedsysClient you may define the right environment for your requests. That environment will be used to send requests to the production or testing Redsys environment.

Custom environments

You can define the environment property to Environment::Custom. In that case, you will also need to define the customBaseUrl propierty.

This feature enables you to use any mock or fake Redsys gateway to test you application locally, for example.

You can find an example on that on our Laravel package creagia/laravel-redsys, which features a local gateway to test your integration locally.

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Alternatives

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of redsys-php with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
ext-openssl Version *
guzzlehttp/guzzle Version ^7.0
spatie/data-transfer-object Version ^3.9
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package creagia/redsys-php contains the following files

Loading the files please wait ....