Skip to content

Commit

Permalink
[AwsToolKit] Use new draw/dependency-injection component
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoiriert committed Jun 28, 2024
1 parent cf7d3a2 commit 90de7ef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration;
namespace Draw\Component\AwsToolKit\DependencyInjection;

use Draw\Component\AwsToolKit\EventListener\NewestInstanceRoleCheckListener;
use Draw\Component\AwsToolKit\Imds\ImdsClientInterface;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Draw\Bundle\FrameworkExtraBundle\Tests\DependencyInjection\Integration;
namespace DependencyInjection;

use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\AwsToolKitIntegration;
use Draw\Component\AwsToolKit\Command\CloudWatchLogsDownloadCommand;
use Draw\Component\AwsToolKit\DependencyInjection\AwsToolKitIntegration;
use Draw\Component\AwsToolKit\EventListener\NewestInstanceRoleCheckListener;
use Draw\Component\AwsToolKit\Imds\ImdsClientInterface;
use Draw\Component\AwsToolKit\Imds\ImdsClientV1;
Expand Down
1 change: 1 addition & 0 deletions packages/aws-tool-kit/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"require-dev": {
"draw/core": "^0.11",
"draw/dependency-injection": "^0.11",
"draw/tester": "^0.11",
"phpunit/phpunit": "^9.0 || ^10.0",
"symfony/cache": "^6.4.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Draw\Bundle\FrameworkExtraBundle\DependencyInjection;

use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\AwsToolKitIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\ConfigurationIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\ConsoleIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\CronIntegration;
Expand All @@ -22,12 +21,14 @@
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\ValidatorIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\VersioningIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\WorkflowIntegration;
use Draw\Component\AwsToolKit\DependencyInjection\AwsToolKitIntegration;
use Draw\Component\DependencyInjection\Integration\ExtendableExtensionTrait;
use Draw\Component\DependencyInjection\Integration\IntegrationInterface;
use Symfony\Component\Config\Definition\ConfigurationInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
use Composer\InstalledVersions;

class DrawFrameworkExtraExtension extends Extension implements PrependExtensionInterface
{
Expand Down

0 comments on commit 90de7ef

Please sign in to comment.