Skip to content

Commit

Permalink
release 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mledoze committed Sep 10, 2023
1 parent 83a5962 commit 32d0b60
Show file tree
Hide file tree
Showing 9 changed files with 496 additions and 292 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0']
php-versions:
- "8.1"
- "8.2"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Breaking changes
- drop support for old versions of PHP and Symfony
- the minimum version of PHP is 8.1
- the supported Symfony versions are 5.4 and 6.3

## [v4.1.1] - 2023-09-10
### Fixed
- fix files listed in npm package
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
}
],
"require": {
"php": ">=7.3",
"symfony/console": "4.4.x|~5.3|^6.0",
"symfony/yaml": "4.4.x|~5.3"
"php": ">=8.1",
"symfony/console": "~5.4|~6.3",
"symfony/yaml": "~5.4|~6.3"
},
"require-dev": {
"roave/security-advisories": "dev-master"
Expand Down
Loading

0 comments on commit 32d0b60

Please sign in to comment.