diff options
Diffstat (limited to 'vendor/symfony/console/composer.json')
-rw-r--r-- | vendor/symfony/console/composer.json | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/vendor/symfony/console/composer.json b/vendor/symfony/console/composer.json new file mode 100644 index 0000000..0ed1bd9 --- /dev/null +++ b/vendor/symfony/console/composer.json | |||
@@ -0,0 +1,54 @@ | |||
1 | { | ||
2 | "name": "symfony/console", | ||
3 | "type": "library", | ||
4 | "description": "Eases the creation of beautiful and testable command line interfaces", | ||
5 | "keywords": ["console", "cli", "command-line", "terminal"], | ||
6 | "homepage": "https://symfony.com", | ||
7 | "license": "MIT", | ||
8 | "authors": [ | ||
9 | { | ||
10 | "name": "Fabien Potencier", | ||
11 | "email": "fabien@symfony.com" | ||
12 | }, | ||
13 | { | ||
14 | "name": "Symfony Community", | ||
15 | "homepage": "https://symfony.com/contributors" | ||
16 | } | ||
17 | ], | ||
18 | "require": { | ||
19 | "php": ">=8.2", | ||
20 | "symfony/polyfill-mbstring": "~1.0", | ||
21 | "symfony/service-contracts": "^2.5|^3", | ||
22 | "symfony/string": "^6.4|^7.0" | ||
23 | }, | ||
24 | "require-dev": { | ||
25 | "symfony/config": "^6.4|^7.0", | ||
26 | "symfony/event-dispatcher": "^6.4|^7.0", | ||
27 | "symfony/http-foundation": "^6.4|^7.0", | ||
28 | "symfony/http-kernel": "^6.4|^7.0", | ||
29 | "symfony/dependency-injection": "^6.4|^7.0", | ||
30 | "symfony/lock": "^6.4|^7.0", | ||
31 | "symfony/messenger": "^6.4|^7.0", | ||
32 | "symfony/process": "^6.4|^7.0", | ||
33 | "symfony/stopwatch": "^6.4|^7.0", | ||
34 | "symfony/var-dumper": "^6.4|^7.0", | ||
35 | "psr/log": "^1|^2|^3" | ||
36 | }, | ||
37 | "provide": { | ||
38 | "psr/log-implementation": "1.0|2.0|3.0" | ||
39 | }, | ||
40 | "conflict": { | ||
41 | "symfony/dependency-injection": "<6.4", | ||
42 | "symfony/dotenv": "<6.4", | ||
43 | "symfony/event-dispatcher": "<6.4", | ||
44 | "symfony/lock": "<6.4", | ||
45 | "symfony/process": "<6.4" | ||
46 | }, | ||
47 | "autoload": { | ||
48 | "psr-4": { "Symfony\\Component\\Console\\": "" }, | ||
49 | "exclude-from-classmap": [ | ||
50 | "/Tests/" | ||
51 | ] | ||
52 | }, | ||
53 | "minimum-stability": "dev" | ||
54 | } | ||