Skip to content

Commit ed9dfca

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 b7c7f27 commit ed9dfca

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/prefixed-cache",
3-
"type": "library",
43
"description": "A decorator that makes your cache support prefix",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"prefix"
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": "^0.4",
@@ -26,11 +26,8 @@
2626
"cache/integration-tests": "^0.16",
2727
"phpunit/phpunit": "^5.7.21"
2828
},
29-
"extra": {
30-
"branch-alias": {
31-
"dev-master": "1.1-dev"
32-
}
33-
},
29+
"minimum-stability": "dev",
30+
"prefer-stable": true,
3431
"autoload": {
3532
"psr-4": {
3633
"Cache\\Prefixed\\": ""
@@ -39,6 +36,9 @@
3936
"/Tests/"
4037
]
4138
},
42-
"minimum-stability": "dev",
43-
"prefer-stable": true
39+
"extra": {
40+
"branch-alias": {
41+
"dev-master": "1.1-dev"
42+
}
43+
}
4444
}

0 commit comments

Comments
 (0)