forked from petrparolek/nette-sandbox-with-mango-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.78 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.78 KB
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
{
"name": "nette/sandbox",
"description": "The sandbox is a pre-packaged Nette Framework project, basic configured structure for your application.",
"homepage": "https://nette.org",
"type": "project",
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
},
{
"name": "Nette Community",
"homepage": "https://nette.org/contributors"
}
],
"require": {
"php": ">=8.1",
"nette/application": "~3.2.0",
"nette/bootstrap": "~3.2.0",
"nette/caching": "~3.3.0",
"nette/database": "~3.2.0",
"nette/di": "~3.2.0",
"nette/finder": "^3.0",
"nette/forms": "~3.2.0",
"nette/http": "~3.3.0",
"nette/mail": "^4.0",
"nette/robot-loader": "^4.0",
"nette/security": "~3.2.0",
"nette/utils": "^4.0",
"latte/latte": "^3.0",
"tracy/tracy": "~2.10.0",
"dg/adminer-custom": "^2.0",
"contributte/console": "^0.10.0",
"nextras/migrations": "^3.1"
},
"require-dev": {
"nette/tester": "~2.5.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"contributte/qa": "^0.3",
"mockery/mockery": "^1.0",
"webnazakazku/mango-tester-http-mocks": "~0.5.0",
"webnazakazku/mango-presenter-tester": "~0.5.0",
"webnazakazku/mango-tester-database-creator": "~0.4.0",
"webnazakazku/mango-tester-infrastructure": "~0.6.0",
"dg/bypass-finals": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"minimum-stability": "stable",
"scripts": {
"phpstan": "phpstan analyse"
},
"config": {
"platform": {
"php": "8.1.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}