Skip to content

Drop PHP 7.4 support, pin dependencies to PHP 8.0.99 to avoid incompa… #52

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

Merged
merged 1 commit into from
Oct 31, 2022
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: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,10 @@
*.yml text eol=lf
*.dist text eol=lf
LICENSE text eol=lf
test export-ignore
.gitattributes export-ignore
.gitignore export-ignore
composer.lock export-ignore
infection.json.dist export-ignore
phpunit.xml.dist export-ignore
renovate.json export-ignore
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
vendor/
composer.lock
phpunit.xml
infection.json
infection-log.txt
Expand Down
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Doctrine Cache adapter for PSR-16 Simple Cache",
"type": "library",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0",
"doctrine/cache": "^1.7",
"psr/simple-cache": "^1.0"
},
Expand Down Expand Up @@ -40,12 +40,14 @@
"psr/simple-cache-implementation": "1.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"ocramius/package-versions": true,
"infection/extension-installer": true
}
},
"platform": {
"php": "8.0.99"
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down
Loading