monsieurbiz / sylius-messenger-admin-plugin
Displays Symfony Messenger messages in Sylius admin panel
Installs: 2 087
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:sylius-plugin
Requires
- php: ^8.1
- sylius/sylius: >=1.12 <1.14
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.16
- phpmd/phpmd: ^2.15
- phpspec/phpspec: ^7.0
- phpstan/phpstan: ^1.8.4
- phpstan/phpstan-doctrine: ^1.3.2
- phpstan/phpstan-webmozart-assert: ^1.1
- phpunit/phpunit: ^10.5
This package is auto-updated.
Last update: 2024-12-29 21:17:12 UTC
README
Displays Symfony Messenger messages in Sylius admin panel
Compatibility
Installation
If you want to use our recipes, you can configure your composer.json by running:
composer config --no-plugins --json extra.symfony.endpoint '["https://api.github.com/repos/monsieurbiz/symfony-recipes/contents/index.json?ref=flex/master","flex://defaults"]'
composer require monsieurbiz/sylius-messenger-admin-plugin
For the installation without flex, follow these additional steps
Change your config/bundles.php
file to add this line for the plugin declaration:
<?php return [ //.. MonsieurBiz\SyliusMessengerAdminPlugin\MonsieurBizSyliusMessengerAdminPlugin::class => ['all' => true], ];
Then create the config file in config/packages/monsieurbiz_sylius_messenger_admin_plugin.yaml
:
imports: resource: '@MonsieurBizSyliusMessengerAdminPlugin/Resources/config/config.yaml'
Finally import the routes in config/routes/monsieurbiz_sylius_messenger_admin_plugin.yaml
:
monsieurbiz_messenger_admin: resource: '@MonsieurBizSyliusMessengerAdminPlugin/Resources/config/routes/admin.yaml' prefix: '/%sylius_admin.path_name%/messages'
Contributing
You can open an issue or a Pull Request if you want! 😘
Thank you!