From 75369bc6d6c6f46af72ba864d4cec131e35adb70 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Mon, 7 Dec 2020 17:06:48 +0100 Subject: [PATCH] Normalize the composer.json files (#247) * Normalize the composer.json files * Normalize tagInterop --- composer.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/composer.json b/composer.json index e92e591..9a86c9a 100644 --- a/composer.json +++ b/composer.json @@ -1,10 +1,7 @@ { "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", @@ -12,6 +9,7 @@ "tag" ], "homepage": "http://www.php-cache.com/en/latest/", + "license": "MIT", "authors": [ { "name": "Aaron Scherer", @@ -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\\": "" @@ -47,9 +50,6 @@ "/Tests/" ] }, - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - } + "minimum-stability": "dev", + "prefer-stable": true }