diff --git a/composer.json b/composer.json index 73d283d..a664eed 100644 --- a/composer.json +++ b/composer.json @@ -1,10 +1,7 @@ { "name": "cache/memcached-adapter", - "description": "A PSR-6 cache implementation using Memcached. This implementation supports tags", "type": "library", - "license": "MIT", - "minimum-stability": "dev", - "prefer-stable": true, + "description": "A PSR-6 cache implementation using Memcached. 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,21 +24,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-memcached": "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": { @@ -50,9 +53,6 @@ "/Tests/" ] }, - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - } + "minimum-stability": "dev", + "prefer-stable": true }