Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport php and symfony version for ci #87

Merged
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
30 changes: 28 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
dependency:
- ''
- 'lowest'
Expand All @@ -22,6 +24,9 @@ jobs:
- '5.4.*'
- '6.0.*'
- '6.1.*'
- '6.2.*'
- '6.3.*'
- '6.4.*'
exclude:
- php: '7.2'
symfony: '4.4.*'
Expand All @@ -30,25 +35,46 @@ jobs:
symfony: '6.0.*'
- php: '7.2'
symfony: '6.1.*'
- php: '7.2'
symfony: '6.2.*'
- php: '7.2'
symfony: '6.3.*'
- php: '7.2'
symfony: '6.4.*'
- php: '7.3'
symfony: '4.4.*'
- php: '7.3'
symfony: '6.0.*'
- php: '7.3'
symfony: '6.1.*'
- php: '7.3'
symfony: '6.2.*'
- php: '7.3'
symfony: '6.3.*'
- php: '7.3'
symfony: '6.4.*'
- php: '7.4'
symfony: '4.4.*'
- php: '7.4'
symfony: '6.0.*'
- php: '7.4'
symfony: '6.1.*'
- php: '7.4'
symfony: '6.2.*'
- php: '7.4'
symfony: '6.3.*'
- php: '7.4'
symfony: '6.4.*'
- php: '8.0'
symfony: '4.4.*'
- php: '8.0'
symfony: '6.1.*'
- php: '8.0'
symfony: '6.1.*'
dependency: 'lowest'
symfony: '6.2.*'
- php: '8.0'
symfony: '6.3.*'
- php: '8.0'
symfony: '6.4.*'
- php: '8.1'
symfony: '4.4.*'
dependency: 'lowest'
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.

## 2.1.0

### Added

- Support for Symfony 6.2, 6.3 and 6.4
- Support for PHP 8.2 and 8.3

## 2.0.0

### Added
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ Using this bundle test together with Matthias Nobacks's
[SymfonyDependencyInjectionTest](https://github.com/SymfonyTest/SymfonyDependencyInjectionTest)
will give you a good base for testing a Symfony bundle.

## Support

Currently supported PHP and Symfony Versions.

| Branch | PHP Version | Symfony Version | Supported |
|--------|-------------------------|-----------------|-----------|
| 2.x | 7.2 - 8.3 | 4.4, 6.3 - 6.4 | Yes |

Please always try to update to the latest version of this package before reporting an issue.

## Install

Via Composer
Expand Down