-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 2.73 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "heavenproject/website",
"description": "Czech Silent Hill Heaven (CSHH) Website",
"type": "project",
"keywords": [
"czech-silent-hill-heaven",
"nette-application",
"php",
"silent-hill",
"website"
],
"homepage": "https://github.com/CSHH/website",
"license": "MIT",
"authors": [
{
"name": "Lukáš Neubauer",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/CSHH/website/issues",
"source": "https://github.com/CSHH/website"
},
"require": {
"php": "5.6.*",
"ezyang/htmlpurifier": "^4.9",
"heavenproject/git-branch-panel": "^1.0",
"heavenproject/user-command-line": "^1.1",
"incenteev/composer-parameter-handler": "^2.1",
"kdyby/annotations": "^2.4",
"kdyby/console": "^2.7",
"kdyby/doctrine": "^3.1",
"kdyby/events": "^3.1",
"kdyby/nette-php-server": "^0.3.0",
"kdyby/nette-session-panel": "~3.2.0",
"kdyby/translation": "^2.4",
"latte/latte": "^2.4",
"nette/application": "^2.4",
"nette/bootstrap": "^2.4",
"nette/caching": "^2.5",
"nette/component-model": "^2.3",
"nette/di": "^2.4",
"nette/finder": "^2.4",
"nette/forms": "^2.4",
"nette/http": "^2.4",
"nette/mail": "^2.4",
"nette/neon": "^2.4",
"nette/php-generator": "^2.6",
"nette/reflection": "^2.4",
"nette/safe-stream": "^2.3",
"nette/security": "^2.4",
"nette/utils": "^2.4",
"nextras/mail-panel": "^2.3",
"tracy/tracy": "^2.4",
"zenify/doctrine-behaviors": "^2.5",
"zenify/doctrine-migrations": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"guzzlehttp/guzzle": "^6.2",
"mockery/mockery": "0.9.*",
"nelmio/alice": "2.3.*",
"nette/tester": "^1.7",
"phing/phing": "^2.16"
},
"autoload": {
"files": [
"functions/dlog.php"
],
"psr-4": {
"App\\": "app",
"HeavenProject\\": "libs/heavenproject"
}
},
"autoload-dev": {
"psr-4": {
"AppTests\\": "tests/include"
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/config.local.neon",
"keep-outdated": true,
"parameter-key": "doctrine"
}
}
}