library spryker-discovery
- Monday, August 7, 2017
- by AAstakhov
- Repository
- 1 Watchers
- 0 Stars
- 5 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Spryker discovery
Spryker module that helps in project development., (*1)
How to install
-
Install module, (*2)
-
Extend a list of core namespaces, (*3)
// config/Shared/config_default.php
$config[KernelConstants::CORE_NAMESPACES] = [
'SprykerEco',
'Spryker',
'Aa\\SprykerDiscovery',
];
- Register command
// src/Pyz/Zed/Console/ConsoleDependencyProvider.php
public function getConsoleCommands(Container $container)
{
...
$commands[] = new DumpRoutesConsole();
...
}