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

58 lines
1.5 KiB
JSON
Raw Normal View History

2016-01-18 14:59:30 +00:00
{
"name": "symfony/cache",
"type": "library",
"description": "Symfony Cache component with PSR-6, PSR-16, and tags",
2016-01-18 14:59:30 +00:00
"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",
2018-08-01 09:02:13 +01:00
"psr/simple-cache-implementation": "1.0",
"symfony/cache-contracts-implementation": "1.0"
2016-01-18 14:59:30 +00:00
},
"require": {
2017-05-17 19:41:56 +01:00
"php": "^7.1.3",
2016-01-25 19:16:47 +00:00
"psr/cache": "~1.0",
"psr/log": "~1.0",
"psr/simple-cache": "^1.0",
"symfony/contracts": "^1.0",
"symfony/var-exporter": "^4.2"
2016-01-18 14:59:30 +00:00
},
"require-dev": {
"cache/integration-tests": "dev-master",
"doctrine/cache": "~1.6",
"doctrine/dbal": "~2.5",
"predis/predis": "~1.0",
"symfony/config": "~4.2",
"symfony/dependency-injection": "~3.4",
"symfony/var-dumper": "^4.1.1"
2016-01-18 14:59:30 +00:00
},
"conflict": {
"doctrine/dbal": "<2.5",
"symfony/dependency-injection": "<3.4",
"symfony/var-dumper": "<3.4"
},
2016-01-18 14:59:30 +00:00
"autoload": {
"psr-4": { "Symfony\\Component\\Cache\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2018-05-07 15:51:25 +01:00
"dev-master": "4.2-dev"
2016-01-18 14:59:30 +00:00
}
}
}