fond-of-oryx / payone-secure-invoice
Implements necessary business logic to use Payone Secure Invoice with Spryker.
2.0.0
2023-01-20 14:07 UTC
Requires
- php: >=8.0
- spryker-eco/payone: dev-master-fondof as 4.4.2
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-27 12:46:52 UTC
README
To use Payone Secure Invoice the provider demands to use a dedicated payment portal for secure invoice, with dedicated credentials. This package contains a plugin which allows to add them via config.
Installation
Disclaimer: Right now this plugin can only be used in conjunction with our Spryker Payone Fork.
The specific branch is feature/dedicated-invoice-credentials
.
composer require fond-of-oryx/payone-secure-invoice
Enable the plugin by adding it to the dependency provider:
Pyz\Zed\Payone\Business\PayoneDependencyProvider::getStandardParameterMapperPlugins() { return [ new SecureInvoiceDedicatedCredentialsPlugin(), ]; }
Configuration
The plugin expects to add the following configuration:
$config[PayoneSecureInvoiceConstants::PAYONE_SECURE_INVOICE_CREDENTIALS] = [ PayoneSecureInvoiceConstants::PAYONE_CREDENTIALS_AID => '13245', PayoneSecureInvoiceConstants::PAYONE_CREDENTIALS_PORTAL_ID => '54321', PayoneSecureInvoiceConstants::PAYONE_CREDENTIALS_KEY => '123test', ];
Replace the credentials with your specific Payone Portal credentials.