-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
54 lines (53 loc) · 1.56 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
{
"name": "crisu83/yii-app",
"description": "A great way to start building your web application with Yii PHP framework.",
"keywords": ["yii", "application-template"],
"homepage": "https://github.com/Crisu83/yii-app",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Christoffer Niska",
"email": "[email protected]",
"homepage": "http://www.cniska.net"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"crisu83/yii-composer": "dev-master",
"crisu83/yii-consoletools": "1.0.*",
"crisu83/yiistrap": "1.2.*",
"phpnode/yiipassword": "dev-master",
"yiisoft/yii": ">=1.1.14"
},
"require-dev": {
"codeception/codeception": "@stable",
"malyshev/yii-debug-toolbar": "dev-master"
},
"suggest": {
"crisu83/yii-auth": "1.6.*",
"crisu83/yii-arbehaviors": "1.1.*",
"crisu83/yii-filemanager": "1.8.*",
"crisu83/yii-imagemanager": "1.11.*",
"crisu83/yii-sentry": "1.3.*",
"crisu83/yii-seo": "dev-master",
"nordsoftware/yii-audit": "1.1.*",
"nordsoftware/yii-emailer": "1.2.*"
},
"scripts": {
"post-install-cmd": [
"Crisu83\\YiiComposer\\InstallHandler::setPermissions"
]
},
"extra": {
"yii-install-writable": [
"app/runtime",
"app/tests/_log",
"web/assets"
],
"yii-install-executable": [
"app/yiic"
]
}
}