forked from nystudio107/craft-transcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.38 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
{
"name": "nystudio107/craft-transcoder",
"description": "Transcode video & audio files to various formats, and provide video thumbnails",
"type": "craft-plugin",
"version": "1.2.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"transcoder",
"transcode",
"video",
"audio",
"gif",
"convert",
"format"
],
"support": {
"docs": "https://nystudio107.com/plugins/transcoder/documentation",
"issues": "https://nystudio107.com/plugins/transcoder/support"
},
"license": "proprietary",
"authors": [
{
"name": "nystudio107",
"homepage": "https://nystudio107.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"mikehaertl/php-shellcommand": "~1.2"
},
"autoload": {
"psr-4": {
"nystudio107\\transcoder\\": "src/"
}
},
"extra": {
"name": "Transcoder",
"handle": "transcoder",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-transcoder/v1/CHANGELOG.md",
"components": {
"transcode": "nystudio107\\transcoder\\services\\Transcode"
},
"class": "nystudio107\\transcoder\\Transcoder"
}
}