akuma / distribution-bundle
Installs: 1 161
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.4
- symfony/symfony: >=2.8.0
This package is auto-updated.
Last update: 2024-11-05 23:57:24 UTC
README
Implements additional way to load bundles without any updates of application files.
Usage
Modify current kernel of application by extending (extends AkumaKernel) from Akuma\Bundle\DistributionBundle\AkumaKernel
and result should be merged with parent result, like following:
class AppKernel extends AkumaKernel { public function registerBundles() { $bundles = array( ... ); if (in_array($this->getEnvironment(), array('dev', 'test'), true)) { ... } //Following should be replaced to suport list of bundles from AkumaKernel return parent::registerBundles($bundles); }
Add Resources/config/bundle.yml file to every bundle you want to be auto-registered within application's kernel:
bundle: class: 'Acme\Bundle\TestBundle\AcmeTestBundle' priority: -1 kernel: true environment: ['test', 'prod'] require: - {class: 'Acme\Bundle\OtherBundle\AcmeOtherBundle', kernel: true}
Where :
class
- is a main class ofBundle
priority
- is an integer valuekernel
- indicates if bundle class require Kernel object as argument for constructorenvironment
- array of environment names to load bundlerequire
- an array of bundles to be loaded
Commands
List registered bundles
Command syntax is akuma:debug:bundle
.
Displays all registered bundles within application.