inviqa / spryker-debug
Inviqa Spryker Debug Module
Installs: 137 865
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 11
Forks: 7
Open Issues: 10
Requires
- php: ^7.4 | ^8.0
- guzzlehttp/guzzle: ^6.0 || ^7.0
- spryker-shop/shop-application: ^1.0
- spryker/console: ^4.0
- spryker/propel: ^3.0
- spryker/rabbit-mq: ^2.0
- spryker/zed-request: ^3.8
- symfony/var-dumper: ^4.0|^5.0
Requires (Dev)
- behat/behat: ^3.5
- phpstan/phpdoc-parser: ^1.6
- propel/propel: 2.0.0-alpha12
- roave/behat-psr11extension: ^2.1
- slevomat/coding-standard: ^7.2
- spryker-sdk/phpstan-spryker: ^0.4
- spryker-shop/web-profiler-widget: ^1.4
- spryker/code-sniffer: ^0.17.7
- spryker/event-dispatcher: ^1.0
- spryker/http: ^1.0
- spryker/router: ^1.3
- spryker/web-profiler: ^1.6
- webmozart/path-util: ^2.0
This package is auto-updated.
Last update: 2024-10-11 13:40:57 UTC
README
Collection of Spryker-compatible debug and development tools.
Installation
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.
Features
Follow the link for documentation:
Console Commands
- 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).
Integrations
- Twig Var Dumper: Pretty
{{ dump() }}
in Twig. - Var Dump Server: Send
dump()
messages to the command line.
Developing
Run the tests:
$ composer integrate