fond-of-oryx / jellyfish-buffer
Spryker Jellyfish Buffer Module.
Installs: 17 948
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/fond-of-oryx/jellyfish-buffer
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
Installation
composer require fond-of-oryx/jellyfish-buffer
Configuration
Register Plugin in src/Pyz/Zed/JellyfishSalesOrder/JellyfishSalesOrderDependencyProvider.php
    /**
     * @return \FondOfOryx\Zed\JellyfishSalesOrderExtension\Dependency\Plugin\JellyfishOrderBeforeExportPluginInterface[]
     */
    protected function getJellyfishOrderBeforeExportPlugins(): array
    {
        return [
            new JellyfishBufferBeforeOrderExportPlugin(),
        ];
    }
Register console command in 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(),
        ];