Skip to content

Commit 8115f11

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 8fbb213 commit 8115f11

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,38 @@
11
{
22
"name": "cache/simple-cache-bridge",
3-
"type": "library",
43
"description": "A PSR-6 bridge to PSR-16. This will make any PSR-6 cache compatible with SimpleCache.",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"psr-16",
910
"bridge"
1011
],
11-
"homepage": "http://www.php-cache.com/en/latest/",
12-
"license": "MIT",
1312
"authors": [
1413
{
1514
"name": "Magnus Nordlander",
1615
"email": "[email protected]",
1716
"homepage": "https://github.com/magnusnordlander"
1817
}
1918
],
19+
"homepage": "http://www.php-cache.com/en/latest/",
2020
"require": {
2121
"php": "^5.6 || ^7.0 || ^8.0",
2222
"psr/cache": "^1.0",
2323
"psr/simple-cache": "^1.0"
2424
},
25-
"provide": {
26-
"psr/simple-cache-implementation": "^1.0"
27-
},
2825
"require-dev": {
2926
"cache/integration-tests": "^0.16",
3027
"mockery/mockery": "^1.0",
3128
"phpunit/phpunit": "^5.7.21",
3229
"symfony/cache": "^3.2"
3330
},
34-
"extra": {
35-
"branch-alias": {
36-
"dev-master": "1.1-dev"
37-
}
31+
"provide": {
32+
"psr/simple-cache-implementation": "^1.0"
3833
},
34+
"minimum-stability": "dev",
35+
"prefer-stable": true,
3936
"autoload": {
4037
"psr-4": {
4138
"Cache\\Bridge\\SimpleCache\\": ""
@@ -44,6 +41,9 @@
4441
"/Tests/"
4542
]
4643
},
47-
"minimum-stability": "dev",
48-
"prefer-stable": true
44+
"extra": {
45+
"branch-alias": {
46+
"dev-master": "1.1-dev"
47+
}
48+
}
4949
}

0 commit comments

Comments
 (0)