I'm trying to load custom config but getting exception:
1/2 InvalidArgumentException in YamlFileLoader.php
There is no extension able to load the configuration for "cwiczenia" (in ..\app/config\config.yml).Looked for namespace "cwiczenia", found "framework", "security",...
2/2 FileLoaderLoadException
There is no extension able to load the configuration for "cwiczenia" ...
..\src\CwiczeniaDependencyInjectionBundle\DependencyInjection\Configuration.php
namespace CwiczeniaDependencyInjectionBundle\DependencyInjection;
use Symfony\Component\Config\Definition\ConfigurationInterface;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
class Configuration implements ConfigurationInterface{
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('cwiczenia');
$rootNode
->children()
->scalarNode('teamName')->end()
->end();
return $treeBuilder;
..\src\CwiczeniaDependencyInjectionBundle\DependencyInjection\CwiczeniaExtension.php
namespace CwiczeniaDependencyInjectionBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\Config\FileLocator;
class CwiczeniaExtension extends Extension
{
protected function load(array $configs, ContainerBuilder $container)
{
$configuration = $this->getConfiguration($configs, $container);
$config = $this->processConfiguration($configuration, $configs);
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
}
public function getAlias()
{
return 'cwiczenia';
}
..\app\config\config.yml
cwiczenia:
teamName: Lakers
AppKernel
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new AppBundle\AppBundle(),
new SandersBundle\SandersBundle(),
new CwiczeniaDependencyInjectionBundle\CwiczeniaDependencyInjectionBundle(),
);
if (in_array($this->getEnvironment(), array('dev', 'test'), true)) {
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
}
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
}
}
Same exception if I remove Configuration.php