Skip to content

Commit 0a807c6

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 d19ba4b commit 0a807c6

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"name": "cache/memcache-adapter",
3-
"type": "library",
43
"description": "A PSR-6 cache implementation using memcache. This implementation supports tags",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"memcache",
910
"tag"
1011
],
11-
"homepage": "http://www.php-cache.com/en/latest/",
12-
"license": "MIT",
1312
"authors": [
1413
{
1514
"name": "Aaron Scherer",
@@ -22,28 +21,26 @@
2221
"homepage": "https://github.com/nyholm"
2322
}
2423
],
24+
"homepage": "http://www.php-cache.com/en/latest/",
2525
"require": {
2626
"php": "^5.6 || ^7.0 || ^8.0",
2727
"cache/adapter-common": "^1.0",
2828
"psr/cache": "^1.0",
2929
"psr/simple-cache": "^1.0"
3030
},
31-
"provide": {
32-
"psr/cache-implementation": "^1.0",
33-
"psr/simple-cache-implementation": "^1.0"
34-
},
3531
"require-dev": {
3632
"cache/integration-tests": "^0.16",
3733
"phpunit/phpunit": "^5.7.21"
3834
},
35+
"provide": {
36+
"psr/cache-implementation": "^1.0",
37+
"psr/simple-cache-implementation": "^1.0"
38+
},
3939
"suggest": {
4040
"ext-memcache": "The extension required to use this pool."
4141
},
42-
"extra": {
43-
"branch-alias": {
44-
"dev-master": "1.1-dev"
45-
}
46-
},
42+
"minimum-stability": "dev",
43+
"prefer-stable": true,
4744
"autoload": {
4845
"psr-4": {
4946
"Cache\\Adapter\\Memcache\\": ""
@@ -57,6 +54,9 @@
5754
"/Tests/"
5855
]
5956
},
60-
"minimum-stability": "dev",
61-
"prefer-stable": true
57+
"extra": {
58+
"branch-alias": {
59+
"dev-master": "1.1-dev"
60+
}
61+
}
6262
}

0 commit comments

Comments
 (0)