Skip to content

Commit cc55a3d

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent acbbc75 commit cc55a3d

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,17 +1,15 @@
11
{
22
"name": "cache/memcached-adapter",
3-
"description": "A PSR-6 cache implementation using Memcached. 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 Memcached. This implementation supports tags",
85
"keywords": [
96
"cache",
107
"psr-6",
118
"memcached",
129
"tag"
1310
],
1411
"homepage": "http://www.php-cache.com/en/latest/",
12+
"license": "MIT",
1513
"authors": [
1614
{
1715
"name": "Aaron Scherer",
@@ -26,21 +24,26 @@
2624
],
2725
"require": {
2826
"php": "^5.6 || ^7.0 || ^8.0",
29-
"psr/cache": "^1.0",
30-
"psr/simple-cache": "^1.0",
3127
"cache/adapter-common": "^1.0",
32-
"cache/hierarchical-cache": "^1.0"
28+
"cache/hierarchical-cache": "^1.0",
29+
"psr/cache": "^1.0",
30+
"psr/simple-cache": "^1.0"
31+
},
32+
"provide": {
33+
"psr/cache-implementation": "^1.0",
34+
"psr/simple-cache-implementation": "^1.0"
3335
},
3436
"require-dev": {
35-
"phpunit/phpunit": "^5.7.21",
36-
"cache/integration-tests": "^0.16"
37+
"cache/integration-tests": "^0.16",
38+
"phpunit/phpunit": "^5.7.21"
3739
},
3840
"suggest": {
3941
"ext-memcached": "The extension required to use this pool."
4042
},
41-
"provide": {
42-
"psr/cache-implementation": "^1.0",
43-
"psr/simple-cache-implementation": "^1.0"
43+
"extra": {
44+
"branch-alias": {
45+
"dev-master": "1.1-dev"
46+
}
4447
},
4548
"autoload": {
4649
"psr-4": {
@@ -50,9 +53,6 @@
5053
"/Tests/"
5154
]
5255
},
53-
"extra": {
54-
"branch-alias": {
55-
"dev-master": "1.1-dev"
56-
}
57-
}
56+
"minimum-stability": "dev",
57+
"prefer-stable": true
5858
}

0 commit comments

Comments
 (0)