Skip to content

Commit 54f6d90

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 ba3746c commit 54f6d90

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,15 +1,14 @@
11
{
22
"name": "cache/hierarchical-cache",
3-
"type": "library",
43
"description": "A helper trait and interface to your PSR-6 cache to support hierarchical keys.",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"hierarchy",
910
"hierarchical"
1011
],
11-
"homepage": "http://www.php-cache.com/en/latest/",
12-
"license": "MIT",
1312
"authors": [
1413
{
1514
"name": "Aaron Scherer",
@@ -22,6 +21,7 @@
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",
@@ -30,11 +30,8 @@
3030
"require-dev": {
3131
"phpunit/phpunit": "^5.7.21"
3232
},
33-
"extra": {
34-
"branch-alias": {
35-
"dev-master": "1.1-dev"
36-
}
37-
},
33+
"minimum-stability": "dev",
34+
"prefer-stable": true,
3835
"autoload": {
3936
"psr-4": {
4037
"Cache\\Hierarchy\\": ""
@@ -43,6 +40,9 @@
4340
"/Tests/"
4441
]
4542
},
46-
"minimum-stability": "dev",
47-
"prefer-stable": true
43+
"extra": {
44+
"branch-alias": {
45+
"dev-master": "1.1-dev"
46+
}
47+
}
4848
}

0 commit comments

Comments
 (0)