Skip to content

Commit 200d11d

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 75df0dd commit 200d11d

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,16 +1,15 @@
11
{
22
"name": "cache/util",
3-
"type": "library",
43
"description": "PSR-6 and PSR-16 Caching Utilities",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr6",
89
"psr16",
910
"utilities",
1011
"util"
1112
],
12-
"homepage": "http://www.php-cache.com/en/latest/",
13-
"license": "MIT",
1413
"authors": [
1514
{
1615
"name": "Tobias Nyholm",
@@ -23,6 +22,7 @@
2322
"homepage": "https://github.com/ragboyjr"
2423
}
2524
],
25+
"homepage": "http://www.php-cache.com/en/latest/",
2626
"require": {
2727
"php": "^5.6 || ^7.0 || ^8.0",
2828
"psr/cache": "^1.0"
@@ -31,11 +31,8 @@
3131
"cache/array-adapter": "^1.0",
3232
"phpunit/phpunit": "^5.7.21"
3333
},
34-
"extra": {
35-
"branch-alias": {
36-
"dev-master": "1.1-dev"
37-
}
38-
},
34+
"minimum-stability": "dev",
35+
"prefer-stable": true,
3936
"autoload": {
4037
"psr-4": {
4138
"Cache\\Util\\": ""
@@ -47,6 +44,9 @@
4744
"/Tests/"
4845
]
4946
},
50-
"minimum-stability": "dev",
51-
"prefer-stable": true
47+
"extra": {
48+
"branch-alias": {
49+
"dev-master": "1.1-dev"
50+
}
51+
}
5252
}

0 commit comments

Comments
 (0)