-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.28 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": "yoannisj/craft-coconut",
"description": "Plugin to transcode video assets with Coconut.co.",
"type": "craft-plugin",
"license": "proprietary",
"authors": [
{
"name": "Yoannis Jamar",
"homepage": "https://yoannis.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/yoannisj/craft-coconut/issues?state=open",
"source": "https://github.com/yoannisj/craft-coconut",
"docs": "https://github.com/yoannisj/craft-coconut/blob/master/README.md"
},
"require": {
"php": "^7.2.5|^8.0",
"craftcms/cms": "^3.1.0",
"opencoconut/coconut": "3.*"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.3",
"codeception/module-yii2": "^1.1",
"codeception/specify": "^1.4",
"codeception/assert-throws": "^1.1"
},
"autoload": {
"psr-4": {
"yoannisj\\coconut\\": "./src/",
"yoannisj\\coconuttests\\fixtures\\": "./tests/fixtures/"
}
},
"archive": {
"exclude": [
"tests",
"docker",
"docker-compose.yml",
".env.example",
".editorconfig"
]
},
"extra": {
"handle": "coconut",
"name": "Coconut",
"class": "yoannisj\\coconut\\Coconut"
}
}