Skip to content

Commit ea9428b

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 78a38bb commit ea9428b

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"name": "cache/taggable-cache",
3-
"type": "library",
43
"description": "Add tag support to your PSR-6 cache implementation",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr6",
89
"tag",
910
"taggable"
1011
],
11-
"homepage": "http://www.php-cache.com/en/latest/",
12-
"license": "MIT",
1312
"authors": [
1413
{
1514
"name": "Aaron Scherer",
@@ -27,6 +26,7 @@
2726
"homepage": "https://github.com/nyholm"
2827
}
2928
],
29+
"homepage": "http://www.php-cache.com/en/latest/",
3030
"require": {
3131
"php": "^5.6 || ^7.0 || ^8.0",
3232
"cache/tag-interop": "^1.0",
@@ -37,11 +37,8 @@
3737
"phpunit/phpunit": "^5.7.21",
3838
"symfony/cache": "^3.1"
3939
},
40-
"extra": {
41-
"branch-alias": {
42-
"dev-master": "1.1-dev"
43-
}
44-
},
40+
"minimum-stability": "dev",
41+
"prefer-stable": true,
4542
"autoload": {
4643
"psr-4": {
4744
"Cache\\Taggable\\": ""
@@ -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)