Attempts to launch the Redis shell using the current project storage configuration.
Add the RedisShellConsole
to your ConsoleDependencyProvider
:
<?php
namespace Pyz\Zed\Console;
// ...
use Inviqa\Zed\SprykerDebug\Communication\Console\RedisShellConsole;
class ConsoleDependencyProvider extends SprykerConsoleDependencyProvider
{
// ...
protected function getConsoleCommands(Container $container)
{
return [
// ...
new RedisShellConsole(),
];
}
}
Launch the redis shell:
$ ./vendor/bin/console debug:redis:shell