From 8384b6df2906c91bc2585559b7d3394d393c3acf Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 18 Apr 2019 08:00:42 +0200 Subject: v4.1.12 --- src/Symfony/Component/Lock/composer.json | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/Symfony/Component/Lock/composer.json (limited to 'src/Symfony/Component/Lock') diff --git a/src/Symfony/Component/Lock/composer.json b/src/Symfony/Component/Lock/composer.json new file mode 100644 index 0000000..1ca9a4d --- /dev/null +++ b/src/Symfony/Component/Lock/composer.json @@ -0,0 +1,37 @@ +{ + "name": "symfony/lock", + "type": "library", + "description": "Symfony Lock Component", + "keywords": ["locking", "redlock", "mutex", "semaphore", "flock", "cas"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Jérémy Derussé", + "email": "jeremy@derusse.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "psr/log": "~1.0" + }, + "require-dev": { + "predis/predis": "~1.0" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Lock\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + } +} -- cgit