-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·56 lines (56 loc) · 1.59 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
{
"name": "densham-technology/craft-youtube",
"description": "",
"type": "craft-plugin",
"version": "0.1.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft-youtube"
],
"support": {
"docs": "https://github.com/densham-technology/craft-youtube/blob/master/README.md",
"issues": "https://github.com/densham-technology/craft-youtube/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Densham Technology",
"homepage": "https://densham.technology"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"google/apiclient": "^2.12.1"
},
"require-dev": {
"craftcms/cms": "^3.2.0",
"codeception/codeception": "^3.0",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"denshamtechnology\\youtube\\": "src/"
}
},
"extra": {
"name": "YouTube",
"handle": "youtube",
"developer": "Densham Technology",
"developerUrl": "https://densham.technology",
"documentationUrl": "https://github.com/densham-technology/craft-youtube/blob/master/README.md",
"changelogUrl": "https://github.com/densham-technology/craft-youtube/CHANGELOG.md",
"components": {
"videos": "denshamtechnology\\youtube\\services\\Videos"
},
"class": "denshamtechnology\\youtube\\YouTube"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}