-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·124 lines (124 loc) · 3.96 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "2amigos/yii2-app-template",
"description": "Yii 2 Project Template",
"keywords": [
"yii2",
"framework",
"basic",
"project template",
"2amigos",
"structure"
],
"homepage": "https://github.com/2amigos/yii2-app-template",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/2amigos/yii2-app-template/issues?state=open",
"source": "https://github.com/2amigos/yii2-app-template"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"yiisoft/yii2": "~2.0.5",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.0.0",
"vlucas/phpdotenv": "^2.4",
"league/container": "^2.2",
"symfony/finder": "^3.1",
"2amigos/yii2-config-kit": "^1.0",
"2amigos/yii2-usuario": "^1.0",
"skeeks/yii2-assets-unify-v2": "^2.6",
"skeeks/yii2-template-cube-admin": "*",
"rmrevin/yii2-fontawesome": "~3.3",
"kartik-v/yii2-widgets": "*",
"kartik-v/yii2-widget-fileinput": "@dev",
"kartik-v/yii2-widget-activeform": "*",
"kartik-v/yii2-datecontrol": "dev-master",
"kartik-v/yii2-tabs-x": "*",
"kartik-v/yii2-grid": "@dev",
"kartik-v/yii2-builder": "@dev",
"kartik-v/yii2-money": "*",
"kartik-v/yii2-editable": "*",
"kartik-v/yii2-mpdf": "*",
"kartik-v/yii2-field-range": "*",
"2amigos/yii2-select2-widget": "^1.0@dev",
"2amigos/yii2-ckeditor-widget": "^1.0@dev",
"kartik-v/yii2-detail-view": "*",
"kartik-v/yii2-date-range": "dev-master",
"kartik-v/yii2-widget-depdrop": "dev-master",
"jino5577/yii2-date-range-picker": "*",
"braunmar/yii2-easypiechart": "dev-master",
"yiisoft/yii2-imagine": "^2.2",
"kartik-v/yii2-sortable-input": "dev-master",
"ddeboer/imap": "^1.9",
"nterms/yii2-mailqueue": "*"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"yiisoft/yii2-shell": "~2.0.0",
"codeception/base": "^2.2.3",
"codeception/verify": "~0.3.1",
"codeception/specify": "~0.4.3",
"facebook/webdriver": "^1.2",
"squizlabs/php_codesniffer": "^2.7",
"friendsofphp/php-cs-fixer": "^2.0",
"phpmd/phpmd": "^2.4",
"guzzlehttp/guzzle": "> 4.1.4 <7.0"
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"php yii post-install/generate-cookie-validation"
],
"start-test-server": [
"php -r \"file_exists('public/index-test.php') || copy('tests/_support/index-test.php', 'public/index-test.php');\"",
"php tests/bin/yii serve --docroot=@web"
],
"stop-test-server": [
"php -r \"unlink('public/index-test.php');\"",
"kill $(lsof -ti tcp:8080)"
],
"start-server": [
"php yii serve --docroot=@web"
],
"stop-server": [
"kill $(lsof -ti tcp:8080)"
]
},
"autoload": {
"psr-4": {
"App\\": [
"./src/App"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"public/assets": "0777",
"yii": "0755"
}
]
}
},
"config": {
"preferred-install": {
"sidekit/*": "source",
"*": "auto"
}
}
}