Skip to content

Commit

Permalink
Declare compatibility with PHP ^8.0 (#40)
Browse files Browse the repository at this point in the history
PHP 8.3 is out and this package works fine with it, but the composer version still prevent to install it with PHP > 8.1.
  • Loading branch information
kylekatarnls authored Feb 27, 2024
1 parent b5fb917 commit da8af81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ '7.2', '7.4', '8.1' ]
php-version: [ '7.2', '7.4', '8.1', '8.2', '8.3', '8.4' ]
dependency-version: [ prefer-stable ]
include:
- { php-version: '7.2', dependency-version: prefer-lowest }
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.2|8.0.*|8.1.*",
"php": "^7.2|^8.0",
"doctrine/annotations": "^1.8",
"doctrine/cache": "^1.9.1",
"doctrine/common": "^2.11|^3.0",
Expand Down

0 comments on commit da8af81

Please sign in to comment.