Skip to content

Commit 2610e4e

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 1f97e08 commit 2610e4e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"name": "cache/namespaced-cache",
3-
"type": "library",
43
"description": "A decorator that makes your cache support namespaces",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"namespace"
910
],
10-
"homepage": "http://www.php-cache.com/en/latest/",
11-
"license": "MIT",
1211
"authors": [
1312
{
1413
"name": "Tobias Nyholm",
1514
"email": "[email protected]",
1615
"homepage": "https://github.com/nyholm"
1716
}
1817
],
18+
"homepage": "http://www.php-cache.com/en/latest/",
1919
"require": {
2020
"php": "^5.6 || ^7.0 || ^8.0",
2121
"cache/hierarchical-cache": "^1.0",
@@ -25,11 +25,8 @@
2525
"cache/memcached-adapter": "^1.0",
2626
"phpunit/phpunit": "^5.7.21"
2727
},
28-
"extra": {
29-
"branch-alias": {
30-
"dev-master": "1.1-dev"
31-
}
32-
},
28+
"minimum-stability": "dev",
29+
"prefer-stable": true,
3330
"autoload": {
3431
"psr-4": {
3532
"Cache\\Namespaced\\": ""
@@ -38,6 +35,9 @@
3835
"/Tests/"
3936
]
4037
},
41-
"minimum-stability": "dev",
42-
"prefer-stable": true
38+
"extra": {
39+
"branch-alias": {
40+
"dev-master": "1.1-dev"
41+
}
42+
}
4343
}

0 commit comments

Comments
 (0)