Skip to content

Commit 2073d1d

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 baf0351 commit 2073d1d

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,14 +1,13 @@
11
{
22
"name": "cache/session-handler",
3-
"type": "library",
43
"description": "An implementation of PHP's SessionHandlerInterface that allows PSR-6",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"session handler"
910
],
10-
"homepage": "http://www.php-cache.com/en/latest/",
11-
"license": "MIT",
1211
"authors": [
1312
{
1413
"name": "Aaron Scherer",
@@ -26,6 +25,7 @@
2625
"homepage": "https://github.com/prisis"
2726
}
2827
],
28+
"homepage": "http://www.php-cache.com/en/latest/",
2929
"require": {
3030
"php": "^5.6 || ^7.0 || ^8.0",
3131
"psr/cache": "^1.0",
@@ -35,11 +35,8 @@
3535
"cache/array-adapter": "^1.0",
3636
"phpunit/phpunit": "^5.7.21"
3737
},
38-
"extra": {
39-
"branch-alias": {
40-
"dev-master": "1.1-dev"
41-
}
42-
},
38+
"minimum-stability": "dev",
39+
"prefer-stable": true,
4340
"autoload": {
4441
"psr-4": {
4542
"Cache\\SessionHandler\\": ""
@@ -48,6 +45,9 @@
4845
"/Tests/"
4946
]
5047
},
51-
"minimum-stability": "dev",
52-
"prefer-stable": true
48+
"extra": {
49+
"branch-alias": {
50+
"dev-master": "1.1-dev"
51+
}
52+
}
5353
}

0 commit comments

Comments
 (0)