-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.27 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
{
"name": "nette/bootstrap",
"description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
"keywords": ["nette", "configurator", "bootstrapping"],
"homepage": "https://nette.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
},
{
"name": "Nette Community",
"homepage": "https://nette.org/contributors"
}
],
"require": {
"php": ">=7.1",
"nette/di": "^2.4.7 || ^3.0",
"nette/utils": "^2.4 || ^3.0"
},
"suggest": {
"nette/robot-loader": "to use Configurator::createRobotLoader()",
"tracy/tracy": "to use Configurator::enableTracy()"
},
"require-dev": {
"nette/application": "^2.3 || ^3.0",
"nette/caching": "^2.3 || ^3.0",
"nette/database": "^2.3 || ^3.0",
"nette/forms": "^2.3 || ^3.0",
"nette/http": "^2.4.0 || ^3.0",
"nette/mail": "^2.3 || ^3.0",
"nette/robot-loader": "^2.4.2 || ^3.0",
"nette/safe-stream": "^2.2",
"nette/security": "^2.3 || ^3.0",
"nette/tester": "^2.0",
"latte/latte": "^2.2",
"tracy/tracy": "^2.4.1"
},
"conflict": {
"nette/nette": "<2.2"
},
"autoload": {
"classmap": ["src/"]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}