-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.17 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
{
"name": "roketi/panel",
"description": "The central Roketi GUI, aka the control panel to manage hosting services",
"license": "MIT",
"keywords": [
"hosting",
"controlpanel",
"cluster",
"management",
"server",
"services"
],
"authors": [
{
"name": "Mario Rimann",
"email": "[email protected]",
"homepage": "http://rimann.org/",
"role": "Lead Developer"
}
],
"homepage": "http://roketi.github.io/",
"support": {
"issues": "https://roketi.atlassian.net/",
"source": "https://github.com/roketi/panel"
},
"require": {
"typo3/flow": "2.3.*",
"kaystrobach/menu": "0.1.*",
"doctrine/migrations": "@dev"
},
"require-dev": {
"typo3/buildessentials": "2.3.*",
"mikey179/vfsstream": "1.4.*",
"typo3/surf": "dev-master",
"phpunit/phpunit": "4.3.*",
"flowpack/behat": "dev-master"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Roketi\\Panel": "Packages/Application/Roketi.Panel/Classes"
}
},
"scripts": {
"post-update-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-install-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall"
}
}