-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.55 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
{
"name": "cat-unicorn-killer/web-app",
"description": "CatUnicornKiller System (CUK) was originally written for IFMSA CZ and is supposed to manage several IFMSA activities",
"homepage": "https://github.com/CatUnicornKiller",
"type": "project",
"license": ["MIT"],
"minimum-stability": "stable",
"config": {
"platform": {
"php": "7.2.14"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload --optimize --classmap-authoritative"
]
},
"autoload": {
"classmap": ["app/Bootstrap.php"]
},
"require": {
"php": ">= 7.2",
"ext-json": "*",
"ext-dom": "*",
"ext-calendar": "*",
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/database": "^3.1",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/forms": "^3.1",
"nette/http": "^3.1",
"nette/mail": "^3.1",
"nette/robot-loader": "^3.4",
"nette/safe-stream": "^2.5",
"nette/security": "^3.1",
"nette/utils": "^3.2",
"latte/latte": "^2.10",
"tracy/tracy": "^2.9",
"contributte/console": "^0.9.1",
"nettrine/orm": "^0.8.2",
"nettrine/dbal": "^0.7.0",
"kdyby/forms-replicator": "@dev",
"guzzlehttp/guzzle": "~6.0",
"mk-j/php_xlsxwriter": "~0.38",
"tecnickcom/tcpdf": "^6.4",
"ezyang/htmlpurifier": "^4.14",
"phpoffice/phpexcel": "~1.8",
"composer/ca-bundle": "^1.3",
"fzaninotto/faker": "^1.9",
"nelmio/alice": "^3.6"
},
"require-dev": {
"nette/tester": "~1.7",
"phpstan/phpstan-nette": "^0.12.21"
}
}