valiton / saferpay-bundle
Symfony2 bundle for providing access to Saferpay. This is an extension to the JMSCorePaymentBundle.
Installs: 1 946
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 21
Forks: 5
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.0.0
- fzaninotto/faker: ^1.0
- guzzlehttp/guzzle: ^6.0
- jms/payment-core-bundle: ~1.0
- symfony/framework-bundle: ~3.0
This package is auto-updated.
Last update: 2024-10-24 19:05:33 UTC
README
This bundle now uses the new Saferpay JSON API
Installation
Install the bundle with composer:
composer require valiton/saferpay-bundle
and activate the bundle in your kernel.
Configuration
Configure the bundle according to your needs, full config example:
valiton_payment_saferpay:
account: <some account> # your saferpay account, usually account-terminalid
jsonapi_key: <some key> # API key generated through saferpay backend
jsonapi_pwd: <some pw> # API password generated through saferpay backend
return_url: <some url> # url called on successfull payment
error_url: <some url> # url called on error
cancel_url: <some url> # url called on user cancel
saferpay_test: true # use the saferpay test system at test.saferpay.com
cardrefid: new|random # create card alias: new: alias is generated by saferpay, random: alias is generated by us
cardrefid_prefix: TST # prefix of the randomly generated alias
cardrefid_length: 33 # length of the randomly generated alias (inclusive prefix)