File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,14 @@ jobs:
2222 symfony-version :
2323 - ' 5.4.*'
2424 - ' 6.3.*'
25+ - ' 7.0.*'
2526 dependencies :
2627 - ' lowest'
2728 - ' highest'
2829 remove-dependencies : [ '' ]
30+ exclude :
31+ - php-version : ' 8.1'
32+ symfony-version : ' 7.0.*'
2933
3034 steps :
3135 - name : " Checkout"
Original file line number Diff line number Diff line change 2727 "require" : {
2828 "php" : " ^8.1" ,
2929 "overblog/dataloader-php" : " ^1" ,
30- "symfony/dependency-injection" : " ^5.4 || ^6.3"
30+ "symfony/dependency-injection" : " ^5.4 || ^6.3 || ^7.0 "
3131 },
3232 "require-dev" : {
3333 "phpunit/phpunit" : " ^10.3" ,
3434 "react/promise" : " ^2.8.0" ,
35- "symfony/framework-bundle" : " ^5.4||^6.3" ,
36- "symfony/phpunit-bridge" : " ^6.3" ,
37- "symfony/yaml" : " ^5.4 || ^6.3"
35+ "symfony/framework-bundle" : " ^5.4||^6.3 || ^7.0 " ,
36+ "symfony/phpunit-bridge" : " ^6.3 || ^7.0 " ,
37+ "symfony/yaml" : " ^5.4 || ^6.3 || ^7.0 "
3838 },
3939 "extra" : {
4040 "branch-alias" : {
Original file line number Diff line number Diff line change 1313
1414use Overblog \DataLoaderBundle \Tests \Functional \app \AppKernel ;
1515use Symfony \Bundle \FrameworkBundle \Test \WebTestCase ;
16- use Symfony \Component \DependencyInjection \ContainerInterface ;
16+ use Symfony \Component \DependencyInjection \Container ;
1717use Symfony \Component \Filesystem \Filesystem ;
1818use Symfony \Component \HttpKernel \KernelInterface ;
1919
@@ -49,7 +49,7 @@ public static function setUpBeforeClass(): void
4949 $ fs ->remove (sys_get_temp_dir ().'/OverblogDataLoaderBundle/ ' );
5050 }
5151
52- protected static function getContainer (): ContainerInterface
52+ protected static function getContainer (): Container
5353 {
5454 return static ::$ kernel ->getContainer ();
5555 }
You can’t perform that action at this time.
0 commit comments