fond-of-spryker / payone-credit-memo
n/a
Installs: 1 646
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.2
- fond-of-spryker/credit-memo: dev-feature/paypal-refund
- spryker-eco/payone: ^4.0.0
Requires (Dev)
- codeception/codeception: ^2.5
- mikey179/vfsstream: ^1.6
- php-coveralls/php-coveralls: ^2.0
- phpro/grumphp: ^0.14
- sebastian/phpcpd: ^4.1
- spryker/application: ^3.19.0
- spryker/code-sniffer: ^0.14.7
- spryker/kernel: ^3.42.4
This package is auto-updated.
Last update: 2021-06-22 13:21:52 UTC
README
Install
composer require fond-of-spryker/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;
}