Skip to content

Commit

Permalink
Support Symfony 7 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
fre5h authored Dec 1, 2023
1 parent 1d030f9 commit 4504f82
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 18 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,9 @@ jobs:
fail-fast: false
matrix:
php-version:
- '8.1'
- '8.2'
symfony-version:
- '6.1'
- '6.2'
- '6.3'
- '6.4'
- '7.0'
steps:
- name: 'Checkout Code'
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

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

#### Check the `config/bundles.php` file
Expand Down
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
"require": {
"php": ">=8.1",
"doctrine/common": "^3.4",
"doctrine/dbal": "^3.6",
"doctrine/doctrine-bundle": "^2.9",
"doctrine/orm": "^2.15",
"symfony/config": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/doctrine-bridge": "^6.1",
"symfony/framework-bundle": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/validator": "^6.1",
"twig/twig": "^3.6"
"doctrine/dbal": "^3.7",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^2.16",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/doctrine-bridge": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/validator": "^7.0",
"twig/twig": "^3.8"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.13",
Expand All @@ -42,8 +42,8 @@
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.1",
"slam/phpstan-extensions": "^6.0",
"phpunit/phpunit": "^10.5",
"slam/phpstan-extensions": "^6.1",
"symfony/form": "^6.1"
},
"autoload": {
Expand Down

0 comments on commit 4504f82

Please sign in to comment.