A symfony bundle which validate a configuration.
Add dependencies in your composer.json
file:
"require": {
...
"idci/configuration-validator-bundle" : "dev-master"
},
Install these new dependencies in your application using composer:
$ php composer.phar update
Register needed bundles in your application kernel:
// app/AppKernel.php
<?php
public function registerBundles()
{
$bundles = array(
// ...
new IDCI\Bundle\ConfigurationValidatorBundle\IDCIConfigurationValidatorBundle(),
);
}