This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Cache/composer.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2016-01-18 14:59:30 +00:00
{
"name": "symfony/cache",
"type": "library",
"description": "Symfony implementation of PSR-6",
"keywords": ["caching", "psr6"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"provide": {
"psr/cache-implementation": "1.0"
},
"require": {
"php": ">=5.5.9",
2016-01-25 19:16:47 +00:00
"psr/cache": "~1.0",
"psr/log": "~1.0"
2016-01-18 14:59:30 +00:00
},
"require-dev": {
"cache/integration-tests": "dev-master",
2016-01-18 14:59:30 +00:00
"doctrine/cache": "~1.6"
},
2016-01-25 19:16:47 +00:00
"suggest": {
"symfony/polyfill-apcu": "For using ApcuAdapter on HHVM"
},
2016-01-18 14:59:30 +00:00
"autoload": {
"psr-4": { "Symfony\\Component\\Cache\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}