Skip to content

Commit 5e06e76

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent e9664ee commit 5e06e76

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,17 +1,15 @@
11
{
22
"name": "cache/memcache-adapter",
3-
"description": "A PSR-6 cache implementation using memcache. 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 memcache. This implementation supports tags",
85
"keywords": [
96
"cache",
107
"psr-6",
118
"memcache",
129
"tag"
1310
],
1411
"homepage": "http://www.php-cache.com/en/latest/",
12+
"license": "MIT",
1513
"authors": [
1614
{
1715
"name": "Aaron Scherer",
@@ -26,20 +24,25 @@
2624
],
2725
"require": {
2826
"php": "^5.6 || ^7.0 || ^8.0",
27+
"cache/adapter-common": "^1.0",
2928
"psr/cache": "^1.0",
30-
"psr/simple-cache": "^1.0",
31-
"cache/adapter-common": "^1.0"
29+
"psr/simple-cache": "^1.0"
30+
},
31+
"provide": {
32+
"psr/cache-implementation": "^1.0",
33+
"psr/simple-cache-implementation": "^1.0"
3234
},
3335
"require-dev": {
34-
"phpunit/phpunit": "^5.7.21",
35-
"cache/integration-tests": "^0.16"
36+
"cache/integration-tests": "^0.16",
37+
"phpunit/phpunit": "^5.7.21"
3638
},
3739
"suggest": {
3840
"ext-memcache": "The extension required to use this pool."
3941
},
40-
"provide": {
41-
"psr/cache-implementation": "^1.0",
42-
"psr/simple-cache-implementation": "^1.0"
42+
"extra": {
43+
"branch-alias": {
44+
"dev-master": "1.1-dev"
45+
}
4346
},
4447
"autoload": {
4548
"psr-4": {
@@ -54,9 +57,6 @@
5457
"/Tests/"
5558
]
5659
},
57-
"extra": {
58-
"branch-alias": {
59-
"dev-master": "1.1-dev"
60-
}
61-
}
60+
"minimum-stability": "dev",
61+
"prefer-stable": true
6262
}

0 commit comments

Comments
 (0)