Skip to content

Commit

Permalink
Merge pull request #68 from akeneo/php8.1-sf6
Browse files Browse the repository at this point in the history
Support PHP 8.1 and Symfony 6
  • Loading branch information
damien-carcel authored Mar 16, 2022
2 parents 7dce8d4 + 6fec63b commit b028c73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0']
php-versions: ['7.3', '7.4', '8.0', '8.1']
steps:
- name: Check out repository code
uses: actions/checkout@v2
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
}
],
"require": {
"php": "^7.2||8.0.*",
"php": "^7.2||^8.0",
"friendsofphp/php-cs-fixer": "^2.1||^3.0",
"symfony/event-dispatcher": "^4.4||^5.0",
"symfony/finder": "^4.4||^5.0",
"symfony/console": "^4.4||^5.0",
"symfony/filesystem": "^4.4||^5.0"
"symfony/event-dispatcher": "^4.4||^5.0||^6.0",
"symfony/finder": "^4.4||^5.0||^6.0",
"symfony/console": "^4.4||^5.0||^6.0",
"symfony/filesystem": "^4.4||^5.0||^6.0"
},
"require-dev": {
"phpspec/phpspec": "^6.0",
"phpstan/phpstan": "^0.12.0"
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit b028c73

Please sign in to comment.