File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Changelog
4
4
3.x
5
5
===
6
6
7
+ unreleased
8
+ ----------
9
+
10
+ * Fixed extension to depend on the DependencyInjection component rather than the HttpKernel.
11
+
7
12
3.0.1
8
13
-----
9
14
Original file line number Diff line number Diff line change 30
30
"require" : {
31
31
"php" : " ^8.1" ,
32
32
"friendsofsymfony/http-cache" : " ^2.15 || ^3.0" ,
33
+ "symfony/dependency-injection" : " ^6.4 || ^7.0" ,
33
34
"symfony/expression-language" : " ^6.4 || ^7.0" ,
34
35
"symfony/framework-bundle" : " ^6.4 || ^7.0" ,
35
36
"symfony/http-foundation" : " ^6.4 || ^7.0" ,
Original file line number Diff line number Diff line change 25
25
use Symfony \Component \DependencyInjection \ChildDefinition ;
26
26
use Symfony \Component \DependencyInjection \ContainerBuilder ;
27
27
use Symfony \Component \DependencyInjection \Definition ;
28
+ use Symfony \Component \DependencyInjection \Extension \Extension ;
28
29
use Symfony \Component \DependencyInjection \Loader \XmlFileLoader ;
29
30
use Symfony \Component \DependencyInjection \Reference ;
30
- use Symfony \Component \HttpKernel \DependencyInjection \Extension ;
31
31
use Symfony \Component \Routing \Generator \UrlGeneratorInterface ;
32
32
use Twig \TwigFunction ;
33
33
You can’t perform that action at this time.
0 commit comments