Skip to content

Commit e967736

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent 9df4e5d commit e967736

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
{
22
"name": "cache/namespaced-cache",
3-
"description": "A decorator that makes your cache support namespaces",
43
"type": "library",
5-
"license": "MIT",
6-
"minimum-stability": "dev",
7-
"prefer-stable": true,
4+
"description": "A decorator that makes your cache support namespaces",
85
"keywords": [
96
"cache",
107
"psr-6",
118
"namespace"
129
],
1310
"homepage": "http://www.php-cache.com/en/latest/",
11+
"license": "MIT",
1412
"authors": [
1513
{
1614
"name": "Tobias Nyholm",
@@ -20,12 +18,17 @@
2018
],
2119
"require": {
2220
"php": "^5.6 || ^7.0 || ^8.0",
23-
"psr/cache": "^1.0",
24-
"cache/hierarchical-cache": "^1.0"
21+
"cache/hierarchical-cache": "^1.0",
22+
"psr/cache": "^1.0"
2523
},
2624
"require-dev": {
27-
"phpunit/phpunit": "^5.7.21",
28-
"cache/memcached-adapter": "^1.0"
25+
"cache/memcached-adapter": "^1.0",
26+
"phpunit/phpunit": "^5.7.21"
27+
},
28+
"extra": {
29+
"branch-alias": {
30+
"dev-master": "1.1-dev"
31+
}
2932
},
3033
"autoload": {
3134
"psr-4": {
@@ -35,9 +38,6 @@
3538
"/Tests/"
3639
]
3740
},
38-
"extra": {
39-
"branch-alias": {
40-
"dev-master": "1.1-dev"
41-
}
42-
}
41+
"minimum-stability": "dev",
42+
"prefer-stable": true
4343
}

0 commit comments

Comments
 (0)