-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat our composer.json file so they look pretty again.
- Loading branch information
Showing
1 changed file
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
{ | ||
"name": "cache/doctrine-adapter", | ||
"description": "A PSR-6 cache implementation using Doctrine. This implementation supports tags", | ||
"type": "library", | ||
"license": "MIT", | ||
"name": "cache/doctrine-adapter", | ||
"description": "A PSR-6 cache implementation using Doctrine. This implementation supports tags", | ||
"type": "library", | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"keywords": [ | ||
"prefer-stable": true, | ||
"keywords": [ | ||
"cache", | ||
"psr-6", | ||
"doctrine", | ||
"tag" | ||
], | ||
"homepage": "http://www.php-cache.com/en/latest/", | ||
"authors": [ | ||
"homepage": "http://www.php-cache.com/en/latest/", | ||
"authors": [ | ||
{ | ||
"name": "Aaron Scherer", | ||
"email": "[email protected]", | ||
"name": "Aaron Scherer", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/aequasi" | ||
}, | ||
{ | ||
"name": "Tobias Nyholm", | ||
"email": "[email protected]", | ||
"name": "Tobias Nyholm", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/nyholm" | ||
} | ||
], | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
"psr/cache": "^1.0", | ||
"psr/simple-cache": "^1.0", | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
"psr/cache": "^1.0", | ||
"psr/simple-cache": "^1.0", | ||
"cache/adapter-common": "^1.0", | ||
"doctrine/cache": "^1.6" | ||
"doctrine/cache": "^1.6" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7.21", | ||
"mockery/mockery": "^0.9.9", | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7.21", | ||
"mockery/mockery": "^0.9.9", | ||
"cache/integration-tests": "^0.16" | ||
}, | ||
"provide": { | ||
"provide": { | ||
"psr/cache-implementation": "^1.0" | ||
}, | ||
"suggest": { | ||
"ext-apc": "Allows for caching with Apc", | ||
"ext-memcache": "Allows for caching with Memcache", | ||
"suggest": { | ||
"ext-apc": "Allows for caching with Apc", | ||
"ext-memcache": "Allows for caching with Memcache", | ||
"ext-memcached": "Allows for caching with Memcached", | ||
"ext-redis": "Allows for caching with Redis" | ||
"ext-redis": "Allows for caching with Redis" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"autoload": { | ||
"psr-4": { | ||
"Cache\\Adapter\\Doctrine\\": "" | ||
}, | ||
"exclude-from-classmap": [ | ||
|