-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.34 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "zenstruck/console-extra",
"description": "A modular set of features to reduce configuration boilerplate for your Symfony commands.",
"homepage": "https://github.com/zenstruck/console-extra",
"type": "library",
"license": "MIT",
"keywords": ["console", "symfony", "command"],
"authors": [
{
"name": "Kevin Bond",
"email": "kevinbond@gmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.0",
"symfony/deprecation-contracts": "^2.2|^3.0",
"zenstruck/callback": "^1.4.2"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^5.2",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/phpunit-bridge": "^6.2|^7.0",
"symfony/process": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"zenstruck/console-test": "^1.4"
},
"conflict": {
"symfony/service-contracts": "<3.2"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\Console\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Console\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"prefer-stable": true
}