Skip to content

Commit 85daf9b

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 dabf290 commit 85daf9b

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "cache/apcu-adapter",
3-
"type": "library",
43
"description": "A PSR-6 cache implementation using apcu. This implementation supports tags",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"cache",
78
"psr-6",
89
"apcu"
910
],
10-
"homepage": "http://www.php-cache.com/en/latest/",
11-
"license": "MIT",
1211
"authors": [
1312
{
1413
"name": "Aaron Scherer",
@@ -21,28 +20,26 @@
2120
"homepage": "https://github.com/nyholm"
2221
}
2322
],
23+
"homepage": "http://www.php-cache.com/en/latest/",
2424
"require": {
2525
"php": "^5.6 || ^7.0 || ^8.0",
2626
"cache/adapter-common": "^1.0",
2727
"psr/cache": "^1.0",
2828
"psr/simple-cache": "^1.0"
2929
},
30-
"provide": {
31-
"psr/cache-implementation": "^1.0",
32-
"psr/simple-cache-implementation": "^1.0"
33-
},
3430
"require-dev": {
3531
"cache/integration-tests": "^0.16",
3632
"phpunit/phpunit": "^5.7.21"
3733
},
34+
"provide": {
35+
"psr/cache-implementation": "^1.0",
36+
"psr/simple-cache-implementation": "^1.0"
37+
},
3838
"suggest": {
3939
"ext-apcu": "The extension required to use this pool."
4040
},
41-
"extra": {
42-
"branch-alias": {
43-
"dev-master": "1.1-dev"
44-
}
45-
},
41+
"minimum-stability": "dev",
42+
"prefer-stable": true,
4643
"autoload": {
4744
"psr-4": {
4845
"Cache\\Adapter\\Apcu\\": ""
@@ -51,6 +48,9 @@
5148
"/Tests/"
5249
]
5350
},
54-
"minimum-stability": "dev",
55-
"prefer-stable": true
51+
"extra": {
52+
"branch-alias": {
53+
"dev-master": "1.1-dev"
54+
}
55+
}
5656
}

0 commit comments

Comments
 (0)