-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
59 lines (59 loc) · 1.82 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
{
"name": "skoro/yii2-admin-template",
"description": "Yii 2 project template for backend projects",
"keywords": ["yii2", "framework", "project template", "admin", "backend"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Alexei Skorobogatko",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "^2.0",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"dmstr/yii2-adminlte-asset": "2.*",
"bower-asset/remarkable-bootstrap-notify": "^3.1",
"bower-asset/animate.css": "^3.5",
"bower-asset/bootstrap-markdown": "^2.10"
},
"require-dev": {
"yiisoft/yii2-gii": "^2.0",
"yiisoft/yii2-debug": "^2.0",
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-faker": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"app\\": "app/",
"modules\\": "modules/"
}
},
"scripts": {
"post-create-project-cmd": "app\\base\\Composer::postCreateProjectCmd"
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"app\\base\\Composer::postCreateProjectCmd": {
"createLocalConfig": ["config-sample.php", "config.php"],
"generateCookieValidationKey": "config.php",
"setPermissions": [
{
"runtime": "0777",
"runtime/cache": "0777",
"runtime/logs": "0777",
"web/assets": "0777"
}
],
"setDatabaseConfiguration": "config.php"
}
}
}