Skip to content

Commit 05c22e4

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 1501ca7 commit 05c22e4

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"name": "cache/filesystem-adapter",
3-
"type": "library",
43
"description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"filesystem",
910
"tag"
1011
],
11-
"homepage": "http://www.php-cache.com/en/latest/",
12-
"license": "MIT",
1312
"authors": [
1413
{
1514
"name": "Aaron Scherer",
@@ -22,26 +21,24 @@
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
"league/flysystem": "^1.0",
2929
"psr/cache": "^1.0",
3030
"psr/simple-cache": "^1.0"
3131
},
32-
"provide": {
33-
"psr/cache-implementation": "^1.0",
34-
"psr/simple-cache-implementation": "^1.0"
35-
},
3632
"require-dev": {
3733
"cache/integration-tests": "^0.16",
3834
"phpunit/phpunit": "^5.7.21"
3935
},
40-
"extra": {
41-
"branch-alias": {
42-
"dev-master": "1.1-dev"
43-
}
36+
"provide": {
37+
"psr/cache-implementation": "^1.0",
38+
"psr/simple-cache-implementation": "^1.0"
4439
},
40+
"minimum-stability": "dev",
41+
"prefer-stable": true,
4542
"autoload": {
4643
"psr-4": {
4744
"Cache\\Adapter\\Filesystem\\": ""
@@ -50,6 +47,9 @@
5047
"/Tests/"
5148
]
5249
},
53-
"minimum-stability": "dev",
54-
"prefer-stable": true
50+
"extra": {
51+
"branch-alias": {
52+
"dev-master": "1.1-dev"
53+
}
54+
}
5555
}

0 commit comments

Comments
 (0)