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/Bundle/WebProfilerBundle/composer.json | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/Symfony/Bundle/WebProfilerBundle/composer.json (limited to 'src/Symfony/Bundle/WebProfilerBundle/composer.json') diff --git a/src/Symfony/Bundle/WebProfilerBundle/composer.json b/src/Symfony/Bundle/WebProfilerBundle/composer.json new file mode 100644 index 0000000..df801f0 --- /dev/null +++ b/src/Symfony/Bundle/WebProfilerBundle/composer.json @@ -0,0 +1,50 @@ +{ + "name": "symfony/web-profiler-bundle", + "type": "symfony-bundle", + "description": "Symfony WebProfilerBundle", + "keywords": [], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": "^7.1.3", + "symfony/http-kernel": "~4.1", + "symfony/routing": "~3.4|~4.0", + "symfony/twig-bridge": "~3.4|~4.0", + "symfony/var-dumper": "~3.4|~4.0", + "twig/twig": "~1.34|~2.4" + }, + "require-dev": { + "symfony/config": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/stopwatch": "~3.4|~4.0" + }, + "conflict": { + "symfony/config": "<3.4", + "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<3.4", + "symfony/var-dumper": "<3.4" + }, + "autoload": { + "psr-4": { "Symfony\\Bundle\\WebProfilerBundle\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + } +} -- cgit