forked from jf-guillou/lcds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.76 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
{
"name": "jf-guillou/lcds",
"description": "Light Centralized Digital Signage",
"keywords": [
"yii2",
"lcds",
"digital signage"
],
"homepage": "https://github.com/jf-guillou/lcds/",
"type": "project",
"license": "BSD-3-Clause",
"version": "0.1.9",
"support": {
"issues": "https://github.com/jf-guillou/lcds/issues?state=open",
"source": "https://github.com/jf-guillou/lcds/"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0",
"yiisoft/yii2": "~2.0.19",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.1.0",
"yiisoft/yii2-jui": "~2.0.0",
"kartik-v/yii2-widget-datetimepicker": "^1.4.8",
"norkunas/youtube-dl-php": "^1.2.0",
"mhor/php-mediainfo": "^4.1.2",
"johngrogg/ics-parser": "^2.1.11",
"edvlerblog/yii2-adldap-module": "^6.0",
"bower-asset/weather-icons": "^2.0",
"bower-asset/jquery-file-upload": "^9.30",
"bower-asset/moment": "^2.24",
"bower-asset/jquery-textfill": "dev-master#8a3e8a9b4e957ef7d2c8d42b9771b05ec55c3bb7",
"bower-asset/raphael": "^2.2"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.1.0",
"yiisoft/yii2-gii": "~2.1.0",
"yiisoft/yii2-faker": "~2.0.0",
"codeception/base": "^2.3.0",
"codeception/verify": "~0.4.0",
"codeception/specify": "~0.4.6",
"symfony/browser-kit": ">=2.7 <=4.2.4"
},
"config": {
"process-timeout": 1800
},
"autoload": {
"psr-4": {
"lcds\\": ""
}
},
"scripts": {
"post-install-cmd": [
"lcds\\composer\\Installer::postInstall",
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"web/uploads/background": "0777",
"web/uploads/images": "0777",
"web/uploads/tmp": "0777",
"web/uploads/videos": "0777",
"yii": "0755"
}
],
"generateCookieValidationKey": [
"config/params.php"
]
},
"lcds\\composer\\Installer::postInstall": {
"copyConfiguration": [
{
"config/db.example.php": "config/db.php",
"config/params.example.php": "config/params.php"
}
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}