-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.93 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
{
"name":"phundament/app",
"description":"Yii Framework Application Boilerplate, with packages from composer repository http://packages.phundament.com",
"keywords":["yii", "web", "application", "boilerplate", "foundation", "template"],
"homepage":"http://phundament.com/",
"type":"yii-application",
"license":"BSD-3-Clause",
"authors":[
{
"name":"Tobias Munk",
"email":"schmunk@usrbin.de",
"homepage":"http://www.phundament.com"
}
],
"support":{
"email":"phundament@usrbin.de",
"issues":"https://github.com/phundament/app/issues",
"forum":"http://phundament.com/en/forum-13.html",
"faq":"http://stackoverflow.com/questions/tagged/phundament",
"wiki":"https://github.com/phundament/app/wiki",
"source":"https://github.com/phundament/app"
},
"repositories":[
{
"type":"composer",
"url":"http://packages.phundament.com"
}
],
"minimum-stability":"stable",
"require":{
"php":">=5.3.2",
"crisu83/yii-rights":"@dev",
"clevertech/yiibooster":"dev-master#3b3f02ca as 1.1.1",
"malyshev/yii-debug-toolbar":"@dev",
"mishamx/yii-user":"@dev",
"schmunk42/ckeditor-configurator": "@dev",
"schmunk42/multi-theme":"0.1.*",
"schmunk42/web-user-behavior":"0.1.*",
"phundament/backend-theme":"@dev",
"phundament/jquery-file-upload": "@dev",
"phundament/p3admin":"0.14.*",
"phundament/p3bootstrap":"0.19.*",
"phundament/p3pages":"0.14.*",
"phundament/p3media":"0.15.*",
"phundament/p3widgets":"0.14.*",
"vitalets/x-editable-yii": "1.2.0",
"waalzer/app-demo-data": "@dev",
"yiiext/fancybox-widget":"0.*",
"yiiext/lipsum-widget":"0.*",
"yiiext/migrate-command":"dev-master#35f315b as 0.7.2.1",
"yiisoft/yii":"1.1.14",
"payum/payum": "0.7.*@dev",
"payum/payum-yii-extension": "0.7.*@dev"
},
"require-dev":{
"cloudhead/less.js":"1.3.*",
"crisu83/yii-less":"2.*",
"phundament/gii-template-collection":"0.12.*",
"phundament/lessii":"@dev",
"schmunk42/database-command":"0.8.*",
"schmunk42/giic":"@dev",
"thomaspark/bootswatch":"2.3.*",
"twitter/bootstrap":"2.3.*"
},
"autoload":{
"psr-0":{
"Phundament":"./src"
}
},
"scripts":{
"pre-install-cmd":"Phundament\\ComposerCallback::preInstall",
"post-install-cmd":"Phundament\\ComposerCallback::postInstall",
"pre-update-cmd":"Phundament\\ComposerCallback::preUpdate",
"post-update-cmd":"Phundament\\ComposerCallback::postUpdate",
"post-package-install":[
"Phundament\\ComposerCallback::postPackageInstall"
],
"post-package-update":[
"Phundament\\ComposerCallback::postPackageUpdate"
]
}
}