Я пытаюсь преобразовать пакет в Symfony 4, и мне нужно обновить мои древние параметры .yml до современного образа жизни Symfony 4. По сути, сам пакет - совместно используемый несколькими приложениями - должен иметь настраиваемый файл в /config/packages/.
Однако я получаю эту ошибку:
(1/1) InvalidArgumentException
There is no extension able to load the configuration for "ptmr" (in /var/www/html/ptmr/pws_ptmrio_dev/PtmrBundle/DependencyInjection/../../config/packages/ptmr.yaml). Looked for namespace "ptmr", found none
/ PtmrBundle / внедрение зависимости / PtmrExtension.php
<?php
namespace PtmrBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\ContainerBuilder;
class PtmrExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration(true);
$config = $this->processConfiguration($configuration, $configs);
$loader = new YamlFileLoader(
$container,
new FileLocator(__DIR__ . '/../../config/packages')
);
$loader->load('ptmr.yaml');
}
}
/ PtmrBundle / внедрение зависимости / configuration.php
<?php
namespace PtmrBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
class Configuration implements ConfigurationInterface
{
private $debug;
public function __construct($debug = true)
{
$this->debug = (bool) $debug;
}
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder('ptmr');
$treeBuilder->getRootNode()
->children()
->arrayNode('twitter')
->children()
->integerNode('client_id')->end()
->scalarNode('client_secret')->end()
->end()
->end() // twitter
->end()
;
return $treeBuilder;
}
}
/ конфигурации / пакеты / ptmr.yaml
ptmr:
twitter:
client_id: 123
client_secret: your_secret
-
Замечания:
Сам Bundle работает.
Я добавил эту строку в psr-4 в composer.json :
"PtmrBundle\\": "PtmrBundle/"
Это строки для конфигурации / маршрутов / annotations.yml
ptmr_bundle:
resource: ../PtmrBundle/Controller/
type: annotation
Эти строки для config / services.yaml
services:
...
PtmrBundle\:
resource: '../PtmrBundle/*'
exclude: '../PtmrBundle/{DependencyInjection,Entity,Migrations,Tests,Kernel.php}'
...
PtmrBundle\Controller\:
resource: '../PtmrBundle/Controller'
tags: ['controller.service_arguments']
И, конечно, PtmrBundle / PtmrBundle.php
<?php
namespace PtmrBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class PtmrBundle extends Bundle
{
}
Я следую этим инструкциям и не вижу никаких ошибок. Что мне не хватает? Symfony 4.2.