-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (70 loc) · 1.88 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": "contributte/webapp-skeleton",
"description": "Webapp skeleton is full featured web app kit based on Nette Framework + Contributte and many useful packages by @f3l1x.",
"keywords": [
"php",
"nette",
"contributte",
"sandbox",
"project",
"skeleton"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.1",
"contributte/bootstrap": "^0.6.0",
"contributte/application": "^0.5.0",
"contributte/cache": "^0.6.0",
"contributte/console": "^0.10.0",
"contributte/console-extra": "^0.8.0",
"contributte/event-dispatcher": "^0.10.0",
"contributte/event-dispatcher-extra": "^0.10.0",
"contributte/di": "^0.5.0",
"contributte/forms": "^0.5.0",
"contributte/http": "^0.4.0",
"contributte/latte": "^0.5.0",
"contributte/mail": "^0.7.0",
"contributte/mailing": "^0.5.0",
"contributte/monolog": "^0.5.2",
"contributte/security": "^0.4.0",
"contributte/utils": "^0.6.0",
"contributte/tracy": "^0.6.0",
"contributte/pdf": "^7.0.0",
"nettrine/annotations": "^0.7.0",
"nettrine/orm": "^0.8.0",
"nettrine/dbal": "^0.8.0",
"nettrine/cache": "^0.3.0",
"nettrine/migrations": "^0.9.1",
"nettrine/fixtures": "^0.8.0",
"contributte/redis": "^0.6.0"
},
"require-dev": {
"contributte/qa": "^0.3",
"contributte/tester": "^0.2",
"contributte/phpstan": "^0.1",
"contributte/dev": "^0.5",
"mockery/mockery": "^1.3.0",
"nelmio/alice": "^3.5.8",
"phpstan/phpstan-doctrine": "^1.3.40"
},
"autoload": {
"psr-4": {
"App\\": "app",
"Database\\": "db"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
}
}