Skip to content

Commit

Permalink
[Workflow] 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 86f6509 commit f8589a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\LoggerIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\LogIntegration;
use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\WorkflowIntegration;
use Draw\Component\Application\DependencyInjection\ConfigurationIntegration;
use Draw\Component\Application\DependencyInjection\CronIntegration;
use Draw\Component\Application\DependencyInjection\FeatureIntegration;
Expand All @@ -23,6 +22,7 @@
use Draw\Component\Security\DependencyInjection\SecurityIntegration;
use Draw\Component\Tester\DependencyInjection\TesterIntegration;
use Draw\Component\Validator\DependencyInjection\ValidatorIntegration;
use Draw\Component\Workflow\DependencyInjection\WorkflowIntegration;
use Draw\DoctrineExtra\DependencyInjection\DoctrineExtraIntegration;
use Symfony\Component\Config\Definition\ConfigurationInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

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

use Draw\Component\DependencyInjection\Integration\IntegrationInterface;
use Draw\Component\DependencyInjection\Integration\IntegrationTrait;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

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

use Draw\Bundle\FrameworkExtraBundle\DependencyInjection\Integration\WorkflowIntegration;
use Draw\Component\DependencyInjection\Integration\IntegrationInterface;
use Draw\Component\DependencyInjection\Integration\Test\IntegrationTestCase;
use Draw\Component\DependencyInjection\Integration\Test\ServiceConfiguration;
use Draw\Component\Workflow\DependencyInjection\WorkflowIntegration;
use Draw\Component\Workflow\EventListener\AddTransitionNameToContextListener;
use Draw\Component\Workflow\EventListener\AddUserToContextListener;
use PHPUnit\Framework\Attributes\CoversClass;
Expand Down
1 change: 1 addition & 0 deletions packages/workflow/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
},
"require-dev": {
"draw/security": "^0.11",
"draw/dependency-injection": "^0.11",
"phpunit/phpunit": "^9.0 || ^10.0",
"symfony/security-core": "^6.4.0"
},
Expand Down

0 comments on commit f8589a9

Please sign in to comment.