annotate vendor/symfony/console/composer.json @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 129ea1e6d783
children
rev   line source
Chris@0 1 {
Chris@0 2 "name": "symfony/console",
Chris@0 3 "type": "library",
Chris@0 4 "description": "Symfony Console Component",
Chris@0 5 "keywords": [],
Chris@0 6 "homepage": "https://symfony.com",
Chris@0 7 "license": "MIT",
Chris@0 8 "authors": [
Chris@0 9 {
Chris@0 10 "name": "Fabien Potencier",
Chris@0 11 "email": "fabien@symfony.com"
Chris@0 12 },
Chris@0 13 {
Chris@0 14 "name": "Symfony Community",
Chris@0 15 "homepage": "https://symfony.com/contributors"
Chris@0 16 }
Chris@0 17 ],
Chris@0 18 "require": {
Chris@14 19 "php": "^5.5.9|>=7.0.8",
Chris@0 20 "symfony/polyfill-mbstring": "~1.0",
Chris@14 21 "symfony/debug": "~2.8|~3.0|~4.0"
Chris@0 22 },
Chris@0 23 "require-dev": {
Chris@14 24 "symfony/config": "~3.3|~4.0",
Chris@14 25 "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
Chris@14 26 "symfony/dependency-injection": "~3.4|~4.0",
Chris@14 27 "symfony/lock": "~3.4|~4.0",
Chris@14 28 "symfony/process": "~3.3|~4.0",
Chris@0 29 "psr/log": "~1.0"
Chris@0 30 },
Chris@17 31 "provide": {
Chris@17 32 "psr/log-implementation": "1.0"
Chris@17 33 },
Chris@0 34 "suggest": {
Chris@0 35 "symfony/event-dispatcher": "",
Chris@14 36 "symfony/lock": "",
Chris@0 37 "symfony/process": "",
Chris@17 38 "psr/log": "For using the console logger"
Chris@0 39 },
Chris@14 40 "conflict": {
Chris@14 41 "symfony/dependency-injection": "<3.4",
Chris@14 42 "symfony/process": "<3.3"
Chris@14 43 },
Chris@0 44 "autoload": {
Chris@0 45 "psr-4": { "Symfony\\Component\\Console\\": "" },
Chris@0 46 "exclude-from-classmap": [
Chris@0 47 "/Tests/"
Chris@0 48 ]
Chris@0 49 },
Chris@0 50 "minimum-stability": "dev",
Chris@0 51 "extra": {
Chris@0 52 "branch-alias": {
Chris@14 53 "dev-master": "3.4-dev"
Chris@0 54 }
Chris@0 55 }
Chris@0 56 }