Skip to content

Commit b9a9bff

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent 8715a7d commit b9a9bff

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

composer.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
22
"name": "cache/predis-adapter",
3-
"description": "A PSR-6 cache implementation using Redis (Predis). 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 (Predis). 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,20 +25,25 @@
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",
3329
"cache/hierarchical-cache": "^1.0",
34-
"predis/predis": "^1.1"
35-
},
36-
"require-dev": {
37-
"phpunit/phpunit": "^5.7.21",
38-
"cache/integration-tests": "^0.16"
30+
"predis/predis": "^1.1",
31+
"psr/cache": "^1.0",
32+
"psr/simple-cache": "^1.0"
3933
},
4034
"provide": {
4135
"psr/cache-implementation": "^1.0",
4236
"psr/simple-cache-implementation": "^1.0"
4337
},
38+
"require-dev": {
39+
"cache/integration-tests": "^0.16",
40+
"phpunit/phpunit": "^5.7.21"
41+
},
42+
"extra": {
43+
"branch-alias": {
44+
"dev-master": "1.1-dev"
45+
}
46+
},
4447
"autoload": {
4548
"psr-4": {
4649
"Cache\\Adapter\\Predis\\": ""
@@ -49,9 +52,6 @@
4952
"/Tests/"
5053
]
5154
},
52-
"extra": {
53-
"branch-alias": {
54-
"dev-master": "1.1-dev"
55-
}
56-
}
55+
"minimum-stability": "dev",
56+
"prefer-stable": true
5757
}

0 commit comments

Comments
 (0)