Skip to content

Commit ac06a7a

Browse files
authored
Merge pull request #52 from Roave/fix/drop-php-7-support
Drop PHP 7.4 support, pin dependencies to PHP 8.0.99 to avoid incompa…
2 parents 72a21ce + 87eccc2 commit ac06a7a

File tree

4 files changed

+3959
-5
lines changed

4 files changed

+3959
-5
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@
77
*.yml text eol=lf
88
*.dist text eol=lf
99
LICENSE text eol=lf
10+
test export-ignore
11+
.gitattributes export-ignore
12+
.gitignore export-ignore
13+
composer.lock export-ignore
14+
infection.json.dist export-ignore
15+
phpunit.xml.dist export-ignore
16+
renovate.json export-ignore

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
vendor/
2-
composer.lock
32
phpunit.xml
43
infection.json
54
infection-log.txt

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Doctrine Cache adapter for PSR-16 Simple Cache",
44
"type": "library",
55
"require": {
6-
"php": "^7.4 || ~8.0.0 || ~8.1.0",
6+
"php": "~8.0.0 || ~8.1.0",
77
"doctrine/cache": "^1.7",
88
"psr/simple-cache": "^1.0"
99
},
@@ -40,12 +40,14 @@
4040
"psr/simple-cache-implementation": "1.0"
4141
},
4242
"config": {
43-
"preferred-install": "dist",
44-
"sort-packages": true,
4543
"allow-plugins": {
4644
"ocramius/package-versions": true,
4745
"infection/extension-installer": true
48-
}
46+
},
47+
"platform": {
48+
"php": "8.0.99"
49+
},
50+
"sort-packages": true
4951
},
5052
"minimum-stability": "dev",
5153
"prefer-stable": true

0 commit comments

Comments
 (0)