fond-of-oryx / payone-credit-memo
n/a
2.1.3
2024-07-23 08:37 UTC
Requires
- php: >=8.0
- fond-of-oryx/credit-memo: ^1.0.0 || ^2.0.0
- fond-of-oryx/payone-credit-memo-extension: ^1.1.0 || ^2.0.0
- spryker-eco/payone: dev-master-fondof as 4.4.2
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-23 09:17:50 UTC
README
Install
composer require fond-of-oryx/payone-credit-memo
Configuration
Add PartialRefundCommandPlugin to OmsDependencyProvider
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Spryker\Zed\Kernel\Container
*/
public function provideBusinessLayerDependencies(Container $container)
{
...
$container->extend(self::COMMAND_PLUGINS, static function (CommandCollectionInterface $commandCollection) {
...
$commandCollection->add(new PartialRefundCommandPlugin(), 'Payone/Refund');
...
return $commandCollection;
});
return $container;
}