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

feat: allow Symfony 7 #24

Merged
merged 1 commit into from
Dec 5, 2023
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
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
dbu marked this conversation as resolved.
Show resolved Hide resolved

- 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
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
],
"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": {
"symfony/phpunit-bridge": "^5.3",
"symfony/phpunit-bridge": "^6.4.1",
"guzzlehttp/psr7": "^2.1"
},
"autoload": {
Expand All @@ -37,6 +37,11 @@
"dev-master": "1.3-dev"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}
Loading