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 a0aa5bb commit 75369bc
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"name": "cache/array-adapter",
"description": "A PSR-6 cache implementation using a php array. This implementation supports tags",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"description": "A PSR-6 cache implementation using a php array. This implementation supports tags",
"keywords": [
"cache",
"psr-6",
"array",
"tag"
],
"homepage": "http://www.php-cache.com/en/latest/",
"license": "MIT",
"authors": [
{
"name": "Aaron Scherer",
Expand All @@ -26,19 +24,24 @@
],
"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"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21",
"cache/integration-tests": "^0.16"
"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": {
"cache/integration-tests": "^0.16",
"phpunit/phpunit": "^5.7.21"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"autoload": {
"psr-4": {
"Cache\\Adapter\\PHPArray\\": ""
Expand All @@ -47,9 +50,6 @@
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 75369bc

Please sign in to comment.