Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 669 Bytes

redis_shell.md

File metadata and controls

41 lines (30 loc) · 669 Bytes

Redis Shell

Attempts to launch the Redis shell using the current project storage configuration.

Installation

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(),
        ];
    }
}

Usage

Launch the redis shell:

$ ./vendor/bin/console debug:redis:shell