Skip to content

Commit

Permalink
Backport php and symfony version for ci (#87)
Browse files Browse the repository at this point in the history
* Add CI and support table for more PHP and Symfony versions
  • Loading branch information
chapterjason authored Dec 16, 2023
1 parent 0a83997 commit ae94a00
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
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

0 comments on commit ae94a00

Please sign in to comment.