-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·115 lines (115 loc) · 2.94 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
{
"name": "apolloeleven/lobi-cms",
"description": "CMS based on Yii2 Starter Kit Application",
"keywords": [
"yii2",
"framework",
"start",
"cms",
"application template",
"yii2 advanced"
],
"authors": [
{
"name": "Zura Sekhniashvili",
"email": "zura@apollo11.ge",
"homepage": "http://zuse.me",
"role": "Developer"
}
],
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/apolloeleven/lobi-cms/issues?state=open",
"source": "https://github.com/apolloeleven/lobi-cms"
},
"require": {
"php": ">=7.0.0",
"ext-pdo": "*",
"ext-intl": "*",
"yiisoft/yii2": "^2.0.13",
"yiisoft/yii2-bootstrap": "^2.0.0",
"yiisoft/yii2-swiftmailer": "^2.0.0",
"asofter/yii2-imperavi-redactor": ">=0.0.3@dev",
"trntv/yii2-aceeditor": "^2.0",
"trntv/probe": "^1.0",
"trntv/yii2-file-kit": "^1.0.0",
"trntv/yii2-glide": "^1.2",
"trntv/yii2-datetime-widget": "dev-master@dev",
"trntv/cheatsheet": "^0.1@dev",
"trntv/yii2-command-bus": "^3.0",
"intervention/image": "^2.1",
"vlucas/phpdotenv": "^2.0",
"bower-asset/font-awesome": "^4.0",
"bower-asset/html5shiv": "^3.0",
"symfony/process": "^3.0",
"guzzlehttp/guzzle": "^6.0",
"alexantr/yii2-elfinder": "^1.3",
"apollo11/env-analyzer": "~1.0",
"creocoder/yii2-nested-sets": "^0.9.0",
"2amigos/yii2-ckeditor-widget": "^2.1",
"kartik-v/yii2-widget-fileinput": "@dev",
"apollo11/lobi-cms-core": "^2.0.0"
},
"require-dev": {
"yiisoft/yii2-debug": "^2.0.0",
"yiisoft/yii2-gii": "^2.0.0",
"yiisoft/yii2-faker": "^2.0.0",
"codeception/codeception": "^2.3.0",
"codeception/verify": "^0.3.1"
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"suggest": {
"trntv/yii2-debug-xhprof": "dev-master@dev"
},
"config": {
"process-timeout": 1800
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
},
{
"type": "git",
"url": "https://github.com/apolloeleven/lobi-cms-core.git"
}
],
"scripts": {
"build:env": [
"cp .env.dist .env"
],
"build:app": [
"@composer install",
"console/yii app/setup --interactive=0"
],
"docker:build": [
"@build:env",
"@docker:start",
"docker-compose exec -T app composer run-script build:app",
"docker-compose run -T --rm webpacker npm i npm@latest -g",
"docker-compose run -T --rm webpacker npm install",
"docker-compose run -T --rm webpacker npm run build",
"echo \"All ok!\""
],
"docker:start": [
"docker-compose up --force-recreate -d"
],
"docker:cleanup": [
"docker-compose rm -fsv"
],
"post-install-cmd": [
"\\apollo11\\envAnalyzer\\Analyzer::analyzeEnvComposer"
]
},
"extra": {
"apollo11-parameters": {
"env-path": ".env",
"env-dist-path": ".env.dist"
}
}
}