Skip to content

Commit 32ef3b5

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 e2e36f2 commit 32ef3b5

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/encryption-cache",
3-
"type": "library",
43
"description": "Adds encryption support to your PSR-6 cache implementation",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr6",
89
"encrypted",
910
"encryption"
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/prisis"
2827
}
2928
],
29+
"homepage": "http://www.php-cache.com/en/latest/",
3030
"require": {
3131
"php": "^5.6 || ^7.0 || ^8.0",
3232
"cache/adapter-common": "^1.1",
@@ -39,11 +39,8 @@
3939
"cache/integration-tests": "^0.16",
4040
"phpunit/phpunit": "^5.7.21"
4141
},
42-
"extra": {
43-
"branch-alias": {
44-
"dev-master": "1.1-dev"
45-
}
46-
},
42+
"minimum-stability": "dev",
43+
"prefer-stable": true,
4744
"autoload": {
4845
"psr-4": {
4946
"Cache\\Encryption\\": ""
@@ -52,6 +49,9 @@
5249
"/Tests/"
5350
]
5451
},
55-
"minimum-stability": "dev",
56-
"prefer-stable": true
52+
"extra": {
53+
"branch-alias": {
54+
"dev-master": "1.1-dev"
55+
}
56+
}
5757
}

0 commit comments

Comments
 (0)