Skip to content

Commit 777db85

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent d9bc9cd commit 777db85

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

composer.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
22
"name": "cache/redis-adapter",
3-
"description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
43
"type": "library",
5-
"license": "MIT",
6-
"minimum-stability": "dev",
7-
"prefer-stable": true,
4+
"description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
85
"keywords": [
96
"cache",
107
"psr-6",
@@ -13,6 +10,7 @@
1310
"tag"
1411
],
1512
"homepage": "http://www.php-cache.com/en/latest/",
13+
"license": "MIT",
1614
"authors": [
1715
{
1816
"name": "Aaron Scherer",
@@ -27,21 +25,26 @@
2725
],
2826
"require": {
2927
"php": "^5.6 || ^7.0 || ^8.0",
30-
"psr/cache": "^1.0",
31-
"psr/simple-cache": "^1.0",
3228
"cache/adapter-common": "^1.0",
33-
"cache/hierarchical-cache": "^1.0"
29+
"cache/hierarchical-cache": "^1.0",
30+
"psr/cache": "^1.0",
31+
"psr/simple-cache": "^1.0"
32+
},
33+
"provide": {
34+
"psr/cache-implementation": "^1.0",
35+
"psr/simple-cache-implementation": "^1.0"
3436
},
3537
"require-dev": {
36-
"phpunit/phpunit": "^5.7.21",
37-
"cache/integration-tests": "^0.16"
38+
"cache/integration-tests": "^0.16",
39+
"phpunit/phpunit": "^5.7.21"
3840
},
3941
"suggest": {
4042
"ext-redis": "The extension required to use this pool."
4143
},
42-
"provide": {
43-
"psr/cache-implementation": "^1.0",
44-
"psr/simple-cache-implementation": "^1.0"
44+
"extra": {
45+
"branch-alias": {
46+
"dev-master": "1.1-dev"
47+
}
4548
},
4649
"autoload": {
4750
"psr-4": {
@@ -51,9 +54,6 @@
5154
"/Tests/"
5255
]
5356
},
54-
"extra": {
55-
"branch-alias": {
56-
"dev-master": "1.1-dev"
57-
}
58-
}
57+
"minimum-stability": "dev",
58+
"prefer-stable": true
5959
}

0 commit comments

Comments
 (0)