Skip to content

Commit

Permalink
Normalize the composer.json files (#247)
Browse files Browse the repository at this point in the history
* Normalize the composer.json files

* Normalize tagInterop
  • Loading branch information
Nyholm authored Dec 7, 2020
1 parent d9bc9cd commit 777db85
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"name": "cache/redis-adapter",
"description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
"keywords": [
"cache",
"psr-6",
Expand All @@ -13,6 +10,7 @@
"tag"
],
"homepage": "http://www.php-cache.com/en/latest/",
"license": "MIT",
"authors": [
{
"name": "Aaron Scherer",
Expand All @@ -27,21 +25,26 @@
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"cache/adapter-common": "^1.0",
"cache/hierarchical-cache": "^1.0"
"cache/hierarchical-cache": "^1.0",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0"
},
"provide": {
"psr/cache-implementation": "^1.0",
"psr/simple-cache-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21",
"cache/integration-tests": "^0.16"
"cache/integration-tests": "^0.16",
"phpunit/phpunit": "^5.7.21"
},
"suggest": {
"ext-redis": "The extension required to use this pool."
},
"provide": {
"psr/cache-implementation": "^1.0",
"psr/simple-cache-implementation": "^1.0"
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"autoload": {
"psr-4": {
Expand All @@ -51,9 +54,6 @@
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 777db85

Please sign in to comment.