From 88b3ee8fd030742d337b287ffada1bde3a6006d9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Oct 2020 14:45:46 +0100 Subject: duplicate v1 --- src/Cache/composer.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/Cache/composer.json (limited to 'src/Cache/composer.json') diff --git a/src/Cache/composer.json b/src/Cache/composer.json new file mode 100644 index 0000000..97eabec --- /dev/null +++ b/src/Cache/composer.json @@ -0,0 +1,38 @@ +{ + "name": "symfony/cache-contracts", + "type": "library", + "description": "Generic abstractions related to caching", + "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1.3", + "psr/cache": "^1.0" + }, + "suggest": { + "symfony/cache-implementation": "" + }, + "autoload": { + "psr-4": { "Symfony\\Contracts\\Cache\\": "" } + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + } +} -- cgit