Skip to content

Commit 7533601

Browse files
Merge pull request #371 from alexislefebvre/chore-upgrade-versions-of-symfony-dependencies
chore: upgrade versions of dependencies
2 parents 7e8f023 + 8c0c1bd commit 7533601

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
# the default job will test ^6.4 for all Symfony packages, with PHP 8.2
13+
# the default job will test ^7.4 for all Symfony packages, with PHP 8.2
1414
php-version: ['8.2']
1515
composer-flags: ['']
16-
symfony-version: ['^6.4']
16+
symfony-version: ['^7.4']
1717
mysql-client: [ "default-mysql-client" ]
1818
# note: values defined in `matrix` and not in the `include:` section will be empty in jobs
1919
include:
@@ -29,16 +29,20 @@ jobs:
2929
composer-flags: "require doctrine/dbal:^3.0 --ignore-platform-req=ext-mongodb"
3030
- php-version: 8.2
3131
symfony-version: "^6.4"
32+
- php-version: 8.2
33+
symfony-version: "^7.4"
3234
# add a specific job to test mysqldump from MariaDB
3335
mysql-client: "mariadb-client"
34-
- php-version: 8.2
35-
symfony-version: "^7.2"
3636
- php-version: 8.3
37-
symfony-version: "^7.2"
37+
symfony-version: "^7.4"
38+
- php-version: 8.4
39+
symfony-version: "^7.4"
40+
- php-version: 8.5
41+
symfony-version: "^7.4"
3842
- php-version: 8.4
39-
symfony-version: "^7.2"
43+
symfony-version: "^8.0"
4044
- php-version: 8.5
41-
symfony-version: "^7.3"
45+
symfony-version: "^8.0"
4246

4347
services:
4448
mariadb:

.qa/phpstan.neon

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,14 @@ parameters:
2929
path: ../tests/AppConfigMongodb/Document/User.php
3030
-
3131
identifier: unset.possiblyHookedProperty
32+
path: ../tests/Test/
33+
-
34+
message: '#^Call to method arrayNode\(\) on an unknown class Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder\<Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition\>\.$#'
35+
identifier: class.notFound
36+
count: 1
37+
path: ../src/DependencyInjection/Configuration.php
38+
-
39+
message: '#^Method Liip\\TestFixturesBundle\\DependencyInjection\\Configuration\:\:getConfigTreeBuilder\(\) return type with generic class Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder does not specify its types\: T$#'
40+
identifier: missingType.generics
41+
count: 1
42+
path: ../src/DependencyInjection/Configuration.php

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@
1818
"php": "^8.1",
1919
"doctrine/persistence": "^1.3.3 || ^2.0 || ^3.0 || ^4.0",
2020
"symfony/deprecation-contracts": "^2.1 || ^3.0",
21-
"symfony/event-dispatcher": "^5.4 || ^6.3 || ^7.0",
21+
"symfony/event-dispatcher": "^5.4 || ^6.3 || ^7.0 || ^8.0",
2222
"symfony/event-dispatcher-contracts": "^1 || ^2 || ^3",
23-
"symfony/framework-bundle": "^5.4 || ^6.3 || ^7.0",
24-
"symfony/yaml": "^5.4 || ^6.3 || ^7.0"
23+
"symfony/framework-bundle": "^5.4 || ^6.3 || ^7.0 || ^8.0",
24+
"symfony/yaml": "^5.4 || ^6.3 || ^7.0 || ^8.0"
2525
},
2626
"require-dev": {
2727
"doctrine/data-fixtures": "^1.7 || ^2.0.1",
28-
"doctrine/doctrine-bundle": "^2.11",
28+
"doctrine/doctrine-bundle": "^2.11 || ^3.1.0",
2929
"doctrine/doctrine-fixtures-bundle": "^3.5.1 || ^4.0",
3030
"doctrine/mongodb-odm-bundle": "^4.4 || ^5.0",
3131
"doctrine/orm": "^2.14 || ^3.1.0",
3232
"doctrine/mongodb-odm": "^2.5",
3333
"monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
3434
"phpunit/phpunit": "^10.5.11 || ^11.0.4 || ^12.0.0",
35-
"symfony/doctrine-bridge": "^5.4 || ^6.3 || ^7.0",
36-
"symfony/monolog-bridge": "^5.4 || ^6.3 || ^7.0",
35+
"symfony/doctrine-bridge": "^5.4 || ^6.3 || ^7.0 || ^8.0",
36+
"symfony/monolog-bridge": "^5.4 || ^6.3 || ^7.0 || ^8.0",
3737
"symfony/monolog-bundle": "^3.2",
3838
"theofidry/alice-data-fixtures": "^1.5.2"
3939
},

0 commit comments

Comments
 (0)