Skip to content

Commit

Permalink
chore: allow Symfony 7 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanpoulain committed Jan 11, 2024
1 parent f4bc112 commit 4f32640
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
php:
- '8.1'
- '8.2'
- '8.3'
symfony:
- '5.4.*'
- '6.2.*'
- '6.3.*'
- '6.4.*'
- '7.0.*'
coverage:
- none
exclude:
- php: '8.1'
symfony: '7.0.*'
include:
- php: '8.1'
symfony: '5.4.*'
Expand All @@ -30,7 +34,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 2.2.1

* Allow Symfony 7

## 2.2.0

* Allow to use a date/time string in default expiration time configuration
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"require": {
"php": ">=8.1",
"spatie/url-signer": "^2.0",
"symfony/config": "^4.4 || ^5.1 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.1 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.1 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.1 || ^6.0",
"symfony/routing": "^4.4 || ^5.1 || ^6.0"
"symfony/config": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/routing": "^4.4 || ^5.1 || ^6.0 || ^7.0"
},
"require-dev": {
"behat/behat": "^3.8",
Expand All @@ -43,8 +43,8 @@
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"vimeo/psalm": "^5.8"
},
"config": {
Expand Down

0 comments on commit 4f32640

Please sign in to comment.