fond-of-oryx / jellyfish-buffer
Spryker Jellyfish Buffer 模块。
2.0.0
2023-01-24 12:59 UTC
Requires
- php: >=8.0
- fond-of-oryx/jellyfish-sales-order: ^1.0.0 || ^2.0.0
- fond-of-oryx/jellyfish-sales-order-extension: ^1.0.0 || ^2.0.0
- spryker/guzzle: ^2.2.0
Requires (Dev)
README
安装
composer require fond-of-oryx/jellyfish-buffer
配置
在src/Pyz/Zed/JellyfishSalesOrder/JellyfishSalesOrderDependencyProvider.php
中注册插件
/**
* @return \FondOfOryx\Zed\JellyfishSalesOrderExtension\Dependency\Plugin\JellyfishOrderBeforeExportPluginInterface[]
*/
protected function getJellyfishOrderBeforeExportPlugins(): array
{
return [
new JellyfishBufferBeforeOrderExportPlugin(),
];
}
在src/Pyz/Zed/Console/ConsoleDependencyProvider.php
中注册控制台命令
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return \Symfony\Component\Console\Command\Command[]
*/
protected function getConsoleCommands(Container $container)
{
$commands = [
...
new JellyfishBufferConsole(),
];