Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
- php: '8.2'
deps: lowest
deprecations: max[self]=0
- php: '8.4'
symfony: '7.4.*'
deps: highest
Comment on lines +21 to +23
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Including only the Symfony LTS version explicitly, as recommended by @stof in #518 (comment)

- php: '8.4'
deps: highest

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 4.0.0 unreleased

* Add support for Symfony 8.0
* Drop support for PHP < 8.2
* Drop support for Symfony < 7.3
* Drop support for Monolog < 3.5
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
"php": ">=8.2",
"composer-runtime-api": "^2.0",
"monolog/monolog": "^3.5",
"symfony/config": "^7.3",
"symfony/dependency-injection": "^7.3",
"symfony/http-kernel": "^7.3",
"symfony/monolog-bridge": "^7.3",
"symfony/config": "^7.3 || ^8.0",
"symfony/dependency-injection": "^7.3 || ^8.0",
"symfony/http-kernel": "^7.3 || ^8.0",
"symfony/monolog-bridge": "^7.3 || ^8.0",
"symfony/polyfill-php84": "^1.30"
},
"require-dev": {
"phpunit/phpunit": "^11.5.41",
"symfony/console": "^7.3",
"symfony/yaml": "^7.3"
"symfony/console": "^7.3 || ^8.0",
"symfony/yaml": "^7.3 || ^8.0"
},
"autoload": {
"psr-4": { "Symfony\\Bundle\\MonologBundle\\": "src" }
Expand Down