-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
76 lines (76 loc) · 2.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "fidry/console",
"description": "Library to create CLI applications",
"license": "MIT",
"type": "library",
"keywords": [
"console",
"cli",
"symfony"
],
"authors": [
{
"name": "Théo Fidry",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/console": "^6.4 || ^7.2",
"symfony/deprecation-contracts": "^3.4",
"symfony/event-dispatcher-contracts": "^2.5 || ^3.0",
"symfony/polyfill-php84": "^1.31",
"symfony/service-contracts": "^2.5 || ^3.0",
"thecodingmachine/safe": "^2.0 || ^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"composer/semver": "^3.3.2",
"ergebnis/composer-normalize": "^2.33",
"fidry/makefile": "^0.2.1 || ^1.0.0",
"infection/infection": "^0.28",
"phpunit/phpunit": "^10.2",
"symfony/dependency-injection": "^6.4 || ^7.2",
"symfony/flex": "^2.4.0",
"symfony/framework-bundle": "^6.4 || ^7.2",
"symfony/http-kernel": "^6.4 || ^7.2",
"symfony/yaml": "^6.4 || ^7.2"
},
"conflict": {
"symfony/dependency-injection": "<6.4.0 || >=7.0.0 <7.2.0",
"symfony/framework-bundle": "<6.4.0 || >=7.0.0 <7.2.0",
"symfony/http-kernel": "<6.4.0 || >=7.0.0 <7.2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Fidry\\Console\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fidry\\Console\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"symfony/flex": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
},
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}