-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 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
{
"name": "dynamic/silverstripe-html5video",
"type": "silverstripe-vendormodule",
"description": "HTML5Video is a SilverStripe module to add HTML5 Video to your website.",
"homepage": "http://dynamicagency.org",
"license": "BSD-3-Clause",
"keywords": ["silverstripe", "html5", "video", "dynamic"],
"authors": [
{
"name": "Dynamic Inc",
"homepage": "http://dynamicagency.com",
"email": "[email protected]"
}
],
"require": {
"silverstripe/recipe-cms": "^1@dev || ^4@dev",
"silverstripe/vendor-plugin": "^1@dev"
},
"require-dev": {
"phpunit/PHPUnit": "^5.7",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"micschk/silverstripe-chunkeduploadfield": "Allows for large file uploads in CMS"
},
"autoload": {
"psr-4": {
"Dynamic\\HTML5Video\\": "src/",
"Dynamic\\HTML5Video\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "html5video",
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"expose": [
"thirdparty/video-js",
"css"
]
}
}