Skip to content

Commit d6d3f15

Browse files
authored
Allow psr/log ^1.0 || ^2.0 || ^3.0 (#254)
* Normalize all composer files How can there be a check when the files are not valid? * Allow psr/log ^1.0 || ^2.0 || ^3.0 Needed for Symfony 6.0
1 parent 8064550 commit d6d3f15

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

composer.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
22
"name": "cache/redis-adapter",
3-
"type": "library",
43
"description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"phpredis",
910
"redis",
1011
"tag"
1112
],
12-
"homepage": "http://www.php-cache.com/en/latest/",
13-
"license": "MIT",
1413
"authors": [
1514
{
1615
"name": "Aaron Scherer",
@@ -23,29 +22,27 @@
2322
"homepage": "https://github.com/nyholm"
2423
}
2524
],
25+
"homepage": "http://www.php-cache.com/en/latest/",
2626
"require": {
2727
"php": "^5.6 || ^7.0 || ^8.0",
2828
"cache/adapter-common": "^1.0",
2929
"cache/hierarchical-cache": "^1.0",
3030
"psr/cache": "^1.0",
3131
"psr/simple-cache": "^1.0"
3232
},
33-
"provide": {
34-
"psr/cache-implementation": "^1.0",
35-
"psr/simple-cache-implementation": "^1.0"
36-
},
3733
"require-dev": {
3834
"cache/integration-tests": "^0.16",
3935
"phpunit/phpunit": "^5.7.21"
4036
},
37+
"provide": {
38+
"psr/cache-implementation": "^1.0",
39+
"psr/simple-cache-implementation": "^1.0"
40+
},
4141
"suggest": {
4242
"ext-redis": "The extension required to use this pool."
4343
},
44-
"extra": {
45-
"branch-alias": {
46-
"dev-master": "1.1-dev"
47-
}
48-
},
44+
"minimum-stability": "dev",
45+
"prefer-stable": true,
4946
"autoload": {
5047
"psr-4": {
5148
"Cache\\Adapter\\Redis\\": ""
@@ -54,6 +51,9 @@
5451
"/Tests/"
5552
]
5653
},
57-
"minimum-stability": "dev",
58-
"prefer-stable": true
54+
"extra": {
55+
"branch-alias": {
56+
"dev-master": "1.1-dev"
57+
}
58+
}
5959
}

0 commit comments

Comments
 (0)