Skip to content

Commit 5677fc0

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent be1cbc6 commit 5677fc0

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

composer.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,35 @@
11
{
22
"name": "cache/prefixed-cache",
3-
"description": "A decorator that makes your cache support prefix",
43
"type": "library",
5-
"license": "MIT",
6-
"minimum-stability": "dev",
7-
"prefer-stable": true,
4+
"description": "A decorator that makes your cache support prefix",
85
"keywords": [
96
"cache",
107
"psr-6",
118
"prefix"
129
],
1310
"homepage": "http://www.php-cache.com/en/latest/",
11+
"license": "MIT",
1412
"authors": [
1513
{
1614
"name": "Tobias Nyholm",
1715
"email": "[email protected]",
1816
"homepage": "https://github.com/nyholm"
1917
}
2018
],
21-
"require": {
19+
"require": {
2220
"php": "^5.6 || ^7.0 || ^8.0",
23-
"psr/cache": "^1.0",
24-
"psr/simple-cache": "^1.0",
25-
"cache/hierarchical-cache": "^0.4"
21+
"cache/hierarchical-cache": "^0.4",
22+
"psr/cache": "^1.0",
23+
"psr/simple-cache": "^1.0"
2624
},
2725
"require-dev": {
28-
"phpunit/phpunit": "^5.7.21",
29-
"cache/integration-tests": "^0.16"
26+
"cache/integration-tests": "^0.16",
27+
"phpunit/phpunit": "^5.7.21"
28+
},
29+
"extra": {
30+
"branch-alias": {
31+
"dev-master": "1.1-dev"
32+
}
3033
},
3134
"autoload": {
3235
"psr-4": {
@@ -36,9 +39,6 @@
3639
"/Tests/"
3740
]
3841
},
39-
"extra": {
40-
"branch-alias": {
41-
"dev-master": "1.1-dev"
42-
}
43-
}
42+
"minimum-stability": "dev",
43+
"prefer-stable": true
4444
}

0 commit comments

Comments
 (0)