alejobit / placetopay-pse-pimple
PlacetoPay PSE service provider for Pimple based project
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/alejobit/placetopay-pse-pimple
Requires
- alejobit/placetopay-pse-php: ^0.1.0
- pimple/pimple: ^3.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- silex/silex: ^2.0
- symfony/cache: ^3.2
This package is auto-updated.
Last update: 2025-09-25 13:44:05 UTC
README
PlacetoPay PSE service provider for Pimple based project
Installattion
To install this library, run the command below and you will get the latest version:
composer require alejobit/placetopay-pse-pimple
And enable it in your application:
use PlacetoPay\PSE\PSEServiceProvider; $app->register(new PSEServiceProvider(), array( 'pse.login' => '6dd490faf9cb87a9862245da41170ff2', 'pse.tranKey' => '024h1IlD', ));
This library assumes that a service provider called cache
has been defined, otherwise, it must be defined as follows:
// using symfony/cache as caching library use Symfony\Component\Cache\Adapter\FilesystemAdapter; $app['cache'] = function () { return new FilesystemAdapter(); };