я пытаюсь создать / загрузить службу с помощью Synfony 2, следуя примеру с документацией, но я столкнулся с этой проблемой. У меня есть
<?php
//src/AppBundle/Services/AmazonWS.php
namespace AppBundle\Services;
use Aws\S3\S3Client;
class AmazonWS
{
function __construct($bucket,$key,$secret){}
}
и у меня на сайте services.yml:
parameters:
# parameter_name: value
amazonws.S3_BUCKET : "synfony"amazonws.S3_KEY : "my_key"amazonws.S3_SECRET : "my_secret"
services:
# service_name:
# class: AppBundle\Directory\ClassName
# arguments: ["@another_service_name", "plain_value", "%parameter_name%"]
AmazonWS:
class: AppBundle\Services\AmazonWS
arguments: ["%amazonws.S3_BUCKET%","%amazonws.S3_KEY%","%amazonws.S3_SECRET%"]
и я получаю следующие ошибки:
[Symfony\Component\Config\Exception\FileLoaderLoadException]
There is no extension able to load the configuration for "AmazonWS" (in /home/sergio/Desktop/hello_symfony_heroku/app/config/services.yml). Looked for namespace "AmazonWS", found "framewor
k", "security", "twig", "monolog", "swiftmailer", "assetic", "doctrine", "sensio_framework_extra", "debug", "web_profiler", "sensio_distribution" in /home/sergio/Desktop/hello_symfony_hero
ku/app/config/services.yml (which is being imported from "/home/sergio/Desktop/hello_symfony_heroku/app/config/config.yml").
[Symfony\Component\DependencyInjection\Exception\InvalidArgumentException]
There is no extension able to load the configuration for "AmazonWS" (in /home/sergio/Desktop/hello_symfony_heroku/app/config/services.yml). Looked for namespace "AmazonWS", found "framewor
k", "security", "twig", "monolog", "swiftmailer", "assetic", "doctrine", "sensio_framework_extra", "debug", "web_profiler", "sensio_distribution"
Я получил config.yml с
imports:
- { resource: parameters.yml }
- { resource: security.yml }
- { resource: services.yml }
Вы пытались использовать инъекцию зависимости от своего AppBundle?
src/AppBundle/DependencyInjection/AppExtension.php
:
<?php
namespace AppBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader;
class AppExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
$loader = new Loader\YamlFileLoader(
$container,
new FileLocator(__DIR__.'/../Resources/config')
);
$loader->load('services.yml');
}
}
А затем используйте ваш services.yml, который находится в src/AppBundle/Resources/config/services.yml
(создайте его, если он не существует).
Отступ:
services:
AmazonWS:
class: AppBundle\Services\AmazonWS
arguments: ["%amazonws.S3_BUCKET%","%amazonws.S3_KEY%","%amazonws.S3_SECRET%"]