Skip to content

Commit

Permalink
Merge pull request #631 from FriendsOfSymfony/use-di-extension
Browse files Browse the repository at this point in the history
change di extension to reference di component rather than http kernel
  • Loading branch information
dbu authored May 22, 2024
2 parents 4a7e7fe + ea656d3 commit 1fe9b90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changelog
3.x
===

unreleased
----------

* Fixed extension to depend on the DependencyInjection component rather than the HttpKernel.

3.0.1
-----

Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"require": {
"php": "^8.1",
"friendsofsymfony/http-cache": "^2.15 || ^3.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/FOSHttpCacheExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
use Symfony\Component\DependencyInjection\ChildDefinition;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Twig\TwigFunction;

Expand Down

0 comments on commit 1fe9b90

Please sign in to comment.