diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/composer.json b/composer.json index 238b40c..51573b6 100644 --- a/composer.json +++ b/composer.json @@ -1,16 +1,19 @@ { "name": "react/cache", - "description": "Async caching.", - "keywords": ["cache"], + "description": "Async, Promise-based cache interface for ReactPHP", + "keywords": ["cache", "caching", "promise", "ReactPHP"], "license": "MIT", "require": { "php": ">=5.3.0", "react/promise": "~2.0|~1.1" }, "autoload": { - "psr-4": { "React\\Cache\\": "src\\" } + "psr-4": { "React\\Cache\\": "src/" } }, "autoload-dev": { - "psr-4": { "React\\Tests\\Cache\\": "tests\\" } + "psr-4": { "React\\Tests\\Cache\\": "tests/" } + }, + "require-dev": { + "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35" } } |