Collection of Spryker-compatible debug and development tools.
Require the package with composer:
$ composer require inviqa/spryker-debug
Add the Inviqa
namespace to the CORE_NAMESPACES
key in your config/Shared/config_default.php
file:
$config[KernelConstants::CORE_NAMESPACES] = [
// ...
'Inviqa',
];
Each feature needs to be enabled individually. Instructions provided in the documentation.
Follow the link for documentation:
- Config Dump: Inpsect configuration.
- Queue Overview: Inspect queue statuses.
- Queue Peek: Peek at messages in a queue.
- Database Shell: Launch a Postgres shell.
- Redis Shell: Launch a Redis shell.
- Propel Metadata: Inspect Propel entity metadata.
- Propel Entity: Inspect Propel entities (basic querying).
- Twig Var Dumper: Pretty
{{ dump() }}
in Twig. - Var Dump Server: Send
dump()
messages to the command line.
Run the tests:
$ composer integrate