Skip to content

Commit 3da8bd9

Browse files
authored
Normalize the composer.json files (#247)
* Normalize the composer.json files * Normalize tagInterop
1 parent a52b566 commit 3da8bd9

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,10 +1,7 @@
11
{
22
"name": "cache/illuminate-adapter",
3-
"description": "A PSR-6 cache implementation using Illuminate. 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 Illuminate. 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": "Florian Voutzinos",
@@ -32,21 +30,26 @@
3230
],
3331
"require": {
3432
"php": "^5.6 || ^7.0 || ^8.0",
35-
"psr/cache": "^1.0",
36-
"psr/simple-cache": "^1.0",
3733
"cache/adapter-common": "^1.0",
34+
"cache/hierarchical-cache": "^1.0",
3835
"illuminate/cache": "^5.4 || ^5.5 || ^5.6",
39-
"cache/hierarchical-cache": "^1.0"
40-
},
41-
"require-dev": {
42-
"phpunit/phpunit": "^5.7.21",
43-
"mockery/mockery": "^1.0",
44-
"cache/integration-tests": "^0.16"
36+
"psr/cache": "^1.0",
37+
"psr/simple-cache": "^1.0"
4538
},
4639
"provide": {
4740
"psr/cache-implementation": "^1.0",
4841
"psr/simple-cache-implementation": "^1.0"
4942
},
43+
"require-dev": {
44+
"cache/integration-tests": "^0.16",
45+
"mockery/mockery": "^1.0",
46+
"phpunit/phpunit": "^5.7.21"
47+
},
48+
"extra": {
49+
"branch-alias": {
50+
"dev-master": "1.1-dev"
51+
}
52+
},
5053
"autoload": {
5154
"psr-4": {
5255
"Cache\\Adapter\\Illuminate\\": ""
@@ -55,9 +58,6 @@
5558
"/Tests/"
5659
]
5760
},
58-
"extra": {
59-
"branch-alias": {
60-
"dev-master": "1.1-dev"
61-
}
62-
}
61+
"minimum-stability": "dev",
62+
"prefer-stable": true
6363
}

0 commit comments

Comments
 (0)