You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
{ |
|
"name": "symfony/console", |
|
"type": "library", |
|
"description": "Eases the creation of beautiful and testable command line interfaces", |
|
"keywords": ["console", "cli", "command-line", "terminal"], |
|
"homepage": "https://symfony.com", |
|
"license": "MIT", |
|
"authors": [ |
|
{ |
|
"name": "Fabien Potencier", |
|
"email": "fabien@symfony.com" |
|
}, |
|
{ |
|
"name": "Symfony Community", |
|
"homepage": "https://symfony.com/contributors" |
|
} |
|
], |
|
"require": { |
|
"php": ">=8.1", |
|
"symfony/deprecation-contracts": "^2.5|^3", |
|
"symfony/polyfill-mbstring": "~1.0", |
|
"symfony/service-contracts": "^2.5|^3", |
|
"symfony/string": "^5.4|^6.0|^7.0" |
|
}, |
|
"require-dev": { |
|
"symfony/config": "^5.4|^6.0|^7.0", |
|
"symfony/event-dispatcher": "^5.4|^6.0|^7.0", |
|
"symfony/dependency-injection": "^5.4|^6.0|^7.0", |
|
"symfony/http-foundation": "^6.4|^7.0", |
|
"symfony/http-kernel": "^6.4|^7.0", |
|
"symfony/lock": "^5.4|^6.0|^7.0", |
|
"symfony/messenger": "^5.4|^6.0|^7.0", |
|
"symfony/process": "^5.4|^6.0|^7.0", |
|
"symfony/stopwatch": "^5.4|^6.0|^7.0", |
|
"symfony/var-dumper": "^5.4|^6.0|^7.0", |
|
"psr/log": "^1|^2|^3" |
|
}, |
|
"provide": { |
|
"psr/log-implementation": "1.0|2.0|3.0" |
|
}, |
|
"conflict": { |
|
"symfony/dependency-injection": "<5.4", |
|
"symfony/dotenv": "<5.4", |
|
"symfony/event-dispatcher": "<5.4", |
|
"symfony/lock": "<5.4", |
|
"symfony/process": "<5.4" |
|
}, |
|
"autoload": { |
|
"psr-4": { "Symfony\\Component\\Console\\": "" }, |
|
"exclude-from-classmap": [ |
|
"/Tests/" |
|
] |
|
}, |
|
"minimum-stability": "dev" |
|
}
|
|
|