-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
45 lines (45 loc) · 1.14 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
{
"name": "dukt/videos",
"description": "Connect to YouTube & Vimeo and publish social videos on your website.",
"version": "2.1.1",
"type": "craft-plugin",
"license": "proprietary",
"keywords": [
"vimeo",
"youtube",
"videos",
"cms",
"craftcms"
],
"authors": [
{
"name": "Dukt",
"homepage": "https://dukt.net/"
}
],
"support": {
"email": "support@dukt.net",
"issues": "https://github.com/dukt/videos/issues?state=open",
"source": "https://github.com/dukt/videos",
"docs": "https://github.com/dukt/videos",
"rss": "https://github.com/dukt/videos/commits/v2.atom"
},
"require": {
"craftcms/cms": "^3.5.0",
"league/oauth2-client": "^2.5.0",
"dukt/oauth2-vimeo": "^2.0.1",
"league/oauth2-google": "^3.0.0"
},
"autoload": {
"psr-4": {
"dukt\\videos\\": "src/"
}
},
"extra": {
"name": "Videos",
"handle": "videos",
"description": "Connect to YouTube & Vimeo and publish social videos on your website",
"documentationUrl": "https://dukt.net/docs/videos/v2",
"changelogUrl": "https://github.com/dukt/videos/blob/v2/CHANGELOG.md"
}
}