Skip to content

Commit 24a2d6f

Browse files
committed
- PHP 8 version only
1 parent 16c3c60 commit 24a2d6f

1 file changed

Lines changed: 19 additions & 13 deletions

File tree

composer.json

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,21 @@
1010
"redis",
1111
"json",
1212
"file-cache",
13-
"psr-6",
14-
"php7"
13+
"psr-6"
1514
],
1615
"authors": [
1716
{
1817
"name": "Mihail Binev",
1918
"homepage": "https://kodeart.com"
2019
}
2120
],
22-
"prefer-stable": true,
2321
"require": {
24-
"php": "^7.2",
25-
"psr/cache": "~1",
26-
"koded/cache-simple": "~2"
22+
"php": "^8",
23+
"psr/cache": "^1",
24+
"koded/cache-simple": "3.*"
2725
},
2826
"autoload": {
29-
"psr-4": {
30-
"Koded\\Caching\\": ""
31-
},
27+
"classmap": [""],
3228
"exclude-from-classmap": [
3329
"/Tests/"
3430
]
@@ -41,10 +37,20 @@
4137
"ext-igbinary": "For Redis igbinary support"
4238
},
4339
"require-dev": {
44-
"phpunit/phpunit": "~7",
45-
"mikey179/vfsstream": "~1",
46-
"predis/predis": "~1",
40+
"phpunit/phpunit": "^8",
41+
"mikey179/vfsstream": "^1",
42+
"predis/predis": "^1",
4743
"cache/integration-tests": "dev-master",
4844
"symfony/phpunit-bridge": "^4.4@dev"
49-
}
45+
},
46+
"autoload-dev": {
47+
"psr-4": {
48+
"Tests\\Koded\\Caching\\": "Tests"
49+
}
50+
},
51+
"config": {
52+
"optimize-autoloader": true
53+
},
54+
"minimum-stability": "dev",
55+
"prefer-stable": true
5056
}

0 commit comments

Comments
 (0)