File tree Expand file tree Collapse file tree 6 files changed +15
-9
lines changed 
Fixtures/ConfigurationBundle/DependencyInjection/Compiler Expand file tree Collapse file tree 6 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 2626          - ' 6.3.*' 
2727          - ' 6.4.*' 
2828          - ' 7.0.*' 
29+         include :
30+           - php : ' 8.4' 
31+             symfony : ' 8.0.*' 
2932        exclude :
3033          - php : ' 7.2' 
3134            symfony : ' 6.0.*' 
Original file line number Diff line number Diff line change 1414    ],
1515    "require" : {
1616        "php" : " ^7.2.5 || ^8.0" 
17-         "symfony/dependency-injection" : " ^5.4 || ^6.0 || ^7.0" 
18-         "symfony/filesystem" : " ^5.4 || ^6.0 || ^7.0" 
19-         "symfony/framework-bundle" : " ^5.4 || ^6.0 || ^7.0" 
20-         "symfony/http-kernel" : " ^5.4 || ^6.0 || ^7.0" 
21-         "symfony/yaml" : " ^5.4 || ^6.0 || ^7.0" 
17+         "symfony/dependency-injection" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " 
18+         "symfony/filesystem" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " 
19+         "symfony/framework-bundle" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " 
20+         "symfony/http-kernel" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " 
21+         "symfony/yaml" : " ^5.4 || ^6.0 || ^7.0 || ^8.0 " 
2222    },
2323    "require-dev" : {
2424        "phpunit/phpunit" : " ^8.5 || ^9.4" 
4040    },
4141    "extra" : {
4242        "branch-alias" : {
43-             "dev-master" : " 2.0 -dev" 
43+             "dev-master" : " 3.x -dev" 
4444        }
4545    },
4646    "scripts" : {
Original file line number Diff line number Diff line change 11<?php 
22
3+ if  (!method_exists ('Symfony\Component\DependencyInjection\ContainerBuilder ' , 'getAutoconfiguredAttributes ' )) {
4+     return ; // Symfony 8 
5+ }
6+ 
37// If annotations aren't installed, disable it. 
48if  (!class_exists ('Doctrine\Common\Annotations\Annotation ' )) {
59    $ containerloadFromExtension ('framework ' , [
Original file line number Diff line number Diff line change 77
88class  DeRegisterSomethingPass implements  CompilerPassInterface
99{
10-     public  function  process (ContainerBuilder $ container
10+     public  function  process (ContainerBuilder $ container:  void 
1111    {
1212        if  ($ containerhasDefinition ('something ' )) {
1313            $ containerremoveDefinition ('something ' );
Original file line number Diff line number Diff line change 88
99class  RegisterSomethingPass implements  CompilerPassInterface
1010{
11-     public  function  process (ContainerBuilder $ container
11+     public  function  process (ContainerBuilder $ container:  void 
1212    {
1313        if  ($ containerhasDefinition ('something ' )) {
1414            return ;
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ public function testCleanupTemporaryDirectories(): void
2424        $ filesystemnew  Filesystem ();
2525
2626        self ::assertTrue ($ filesystemexists ($ cacheDirectory
27-         self ::assertTrue ($ filesystemexists ($ logDirectory
2827
2928        self ::ensureKernelShutdown ();
3029
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments