Download the PHP package wemakecustom/directory-loader-bundle without Composer
On this page you can find all versions of the php package wemakecustom/directory-loader-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download wemakecustom/directory-loader-bundle
More information about wemakecustom/directory-loader-bundle
Files in wemakecustom/directory-loader-bundle
Package directory-loader-bundle
Short Description Symfony DirectoryLoaderBundle to recursively import directories of configuration
License MIT
Homepage http://github.com/wemakecustom/DirectoryLoaderBundle
Informations about the package directory-loader-bundle
Symfony Directory Loader
Recursively import directories of configuration.
This works for your main configuration files and the router.
See https://github.com/symfony/symfony-standard/issues/599
Since https://github.com/symfony/symfony/pull/14700 has been merged (Symfony 2.8+), the directory loader is included by default in Symfony. The documentation is kept here however for reference purposes.
Please refer to http://symfony.com/doc/current/cookbook/configuration/configuration_organization.html for further use-cases of the DirectoryLoader.
Installation
Add the following in your root composer.json file:
And modify your app/AppKernel.php
:
Strictly speaking, registering the Bundle is only necessary if you want the fonctionnality in the routing files and overloading the ContainerLoader is only necessary for the main configuration files, but you do what you want.
Usage
The main goal of this bundle is to drop configuration files in folder without modifying
the main config.yml
. This way, each file can group all (and only) the configuration
related to a specific bundle.
Using a directory based on the environment
Instead of using config_ENV.yml
, one may use a directory for each environment.
For example:
Using directories for parameters
Parameters can be loaded as directories as well in the same fashion.
Moreover, an interesting concept is to have a folder for core parameters, global to your application and local parameters, specific to each installation.
For example:
app/parameters/local/*.yml
will be ignored and its content will be the files from
app/parameters/dist
, copied and modified accordingly.
You can then modify your config.yml
:
Using a composer script to generate configuration files
To fill the missing files on each composer run, you can replace the native parameters
builder by wemakecustom/composer-script-utils
and configure your composer.json
, replacing Incenteev\ParameterHandler\ScriptHandler
Full example
You can see the final configuration tree here: https://github.com/wemakecustom/symfony-kickstart/tree/master/dist
Usage without Symfony Framework
It is also possible to use this library without registering with Symfony.
To do so, simply add the proper loader to your LoaderResolver
.
Example with routing:
Example with DI can be found above.
Word of caution
AsseticBundle features a PHP directory loader to be able to parse Controllers. This directory loader superseeds it: if it tries to do the job of Assetic’s loader, it works correctly, but not the other way around.
Therefore, this bundle inserts itself before Assetic to ensure it is run before.
A way to prevent this is to specify type: directory
in the router import, but there is
currently a bug around this method. See symfony/AsseticBundle#289 and symfony/symfony#11018.