Skip to content

Commit 4504f82

Browse files
authored
Support Symfony 7 (#235)
1 parent 1d030f9 commit 4504f82

File tree

3 files changed

+14
-18
lines changed

3 files changed

+14
-18
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,9 @@ jobs:
102102
fail-fast: false
103103
matrix:
104104
php-version:
105-
- '8.1'
106105
- '8.2'
107106
symfony-version:
108-
- '6.1'
109-
- '6.2'
110-
- '6.3'
111-
- '6.4'
107+
- '7.0'
112108
steps:
113109
- name: 'Checkout Code'
114110
uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
| Bundle Version (X.Y.Z) | PHP | Symfony | Doctrine Bundle | Comment |
2626
|:----------------------:|:--------:|:----------:|:---------------:|:--------------------|
27-
| `10.0.*` | `>= 8.2` | `>= 7.0` | `>= 2.9` | **Current version** |
27+
| `10.0.*` | `>= 8.2` | `>= 7.0` | `>= 2.11` | **Current version** |
2828
| `9.2.*` | `>= 8.1` | `>= 6.1` | `>= 2.9` | Previous version |
2929

3030
#### Check the `config/bundles.php` file

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
"require": {
2525
"php": ">=8.1",
2626
"doctrine/common": "^3.4",
27-
"doctrine/dbal": "^3.6",
28-
"doctrine/doctrine-bundle": "^2.9",
29-
"doctrine/orm": "^2.15",
30-
"symfony/config": "^6.1",
31-
"symfony/dependency-injection": "^6.1",
32-
"symfony/doctrine-bridge": "^6.1",
33-
"symfony/framework-bundle": "^6.1",
34-
"symfony/http-kernel": "^6.1",
35-
"symfony/validator": "^6.1",
36-
"twig/twig": "^3.6"
27+
"doctrine/dbal": "^3.7",
28+
"doctrine/doctrine-bundle": "^2.11",
29+
"doctrine/orm": "^2.16",
30+
"symfony/config": "^7.0",
31+
"symfony/dependency-injection": "^7.0",
32+
"symfony/doctrine-bridge": "^7.0",
33+
"symfony/framework-bundle": "^7.0",
34+
"symfony/http-kernel": "^7.0",
35+
"symfony/validator": "^7.0",
36+
"twig/twig": "^3.8"
3737
},
3838
"require-dev": {
3939
"escapestudios/symfony2-coding-standard": "^3.13",
@@ -42,8 +42,8 @@
4242
"phpstan/phpstan-doctrine": "^1.3",
4343
"phpstan/phpstan-phpunit": "^1.3",
4444
"phpstan/phpstan-symfony": "^1.3",
45-
"phpunit/phpunit": "^10.1",
46-
"slam/phpstan-extensions": "^6.0",
45+
"phpunit/phpunit": "^10.5",
46+
"slam/phpstan-extensions": "^6.1",
4747
"symfony/form": "^6.1"
4848
},
4949
"autoload": {

0 commit comments

Comments
 (0)