Skip to content

Commit

Permalink
feat: allow Symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
KDederichs committed Dec 5, 2023
1 parent c59497f commit 206f660
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.3', '7.4', '8.0']
php: ['7.3', '7.4', '8.0', '8.2']
symfony-version: ['*']
include:
- php: '7.4'
Expand All @@ -24,6 +24,8 @@ jobs:
symfony-version: 5.4.*
- php: '8.0'
symfony-version: 6.0.*
- php: '8.2'
symfony-version: 7.0.*

steps:
- name: Checkout code
Expand All @@ -39,6 +41,9 @@ jobs:
- name: Composer validate
run: composer validate --strict --no-check-lock

- name: Flex Plugin
run: composer global config --no-plugins allow-plugins.symfony/flex true

- name: Symfony version
if: matrix.symfony-version != '*'
run: composer global require --no-progress symfony/flex && composer config extra.symfony.require ${{ matrix.symfony-version }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

- Support Symfony 7

## 1.4.1 - 2022-01-14

- Support Symfony 6
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"require": {
"php": "^7.3 || ^8.0",
"symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"php-http/client-common": "^1.9 || ^2.0"
},
"require-dev": {
Expand All @@ -37,6 +37,11 @@
"dev-master": "1.3-dev"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}

0 comments on commit 206f660

Please sign in to comment.