A Shopware 6 development bundle that provides additional development utilities and tools.
This bundle extends the Shopware 6 core framework to provide development-specific functionality.
composer require shopware/development-bundle
Add it to config/bundles.php
DevelopmentBundle::class => ['dev' => true],
DevelopmentBundle/
├── composer.json # Bundle dependencies and autoloading
├── src/
│ └── DevelopmentBundle.php # Main bundle class
└── README.md # This file
- Shopware 6
- PHP 8.2 or higher
This bundle is automatically loaded when placed in the custom/plugins
directory of your Shopware installation.
To extend this bundle, add your custom services, commands, or controllers in the src/
directory following Symfony bundle conventions.