-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
72 lines (71 loc) · 1.6 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
{
"name": "kdyby/console",
"type": "library",
"description": "Symfony Console integration for Kdyby components",
"keywords": ["nette", "kdyby", "console"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/kdyby/console/issues"
},
"require": {
"php": "^7.4 | ^8.0",
"nette/di": "^3.0",
"nette/routing": "^3.0.0",
"tracy/tracy": "^2.8 || ^3.0",
"nette/utils": "^3.1",
"symfony/console": "~2.3 || ^3.0 || < 4.5"
},
"require-dev": {
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/caching": "^3.0",
"nette/http": "^3.0",
"kdyby/events": "^5.0",
"symfony/event-dispatcher": "~2.3 || ^3.0 || < 4.5",
"nette/tester": "^2.2",
"phpstan/phpstan": "^0.12.88",
"doctrine/coding-standard": "8.2.*",
"php-coveralls/php-coveralls": "^2.1",
"php-parallel-lint/php-parallel-lint": "^v1.2.0",
"typo3/class-alias-loader": "^1.0"
},
"suggest": {
"nette/http": "For faking the url of the request in cli"
},
"autoload": {
"psr-4": {
"Kdyby\\Console\\": "src/"
},
"classmap": [
"src/CliPresenter.php"
]
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\": "tests/KdybyTests/"
},
"classmap": [
"tests/KdybyTests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.8-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"typo3/class-alias-loader": true
}
}
}