-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
48 lines (48 loc) · 1.44 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
{
"name": "wbraganca/yii2-videojs-widget",
"description": "The yii2-videojs-widget is a Yii 2 wrapper for the [video.js](http://www.videojs.com/). A JavaScript and CSS library that makes it easier to work with and build on HTML5 video. This is also known as an HTML5 Video Player.",
"keywords": [
"yii2-videojs-widget",
"yii2",
"yii2-extension",
"yii2-videojs-widget",
"yii2-videojs",
"videojs",
"html5 video"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/wbraganca/yii2-videojs-widget/issues",
"wiki": "https://github.com/wbraganca/yii2-videojs-widget/wiki/",
"source": "https://github.com/wbraganca/yii2-videojs-widget"
},
"authors": [
{
"name": "Wanderson Bragança",
"email": "wanderson.wbc@gmail.com",
"homepage": "http://wbraganca.com"
}
],
"require": {
"yiisoft/yii2": "~2.0",
"bower-asset/video.js": "~5.1.0"
},
"autoload": {
"psr-4": {
"wbraganca\\videojs\\": "src"
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"asset-ignore-files": {
"bower-asset/video.js": [
"*/**",
"!dist/*"
]
}
}
}