forked from wrav/oembed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·59 lines (59 loc) · 1.49 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
57
58
59
{
"name": "wrav/oembed",
"description": "A simple plugin to extract media information from websites, like youtube videos, twitter statuses or blog articles.",
"type": "craft-plugin",
"version": "1.3.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"oembed",
"graphql",
"gdpr",
"iframe",
"youtube",
"vimeo",
"instagram",
"twitter",
"facebook"
],
"support": {
"docs": "https://github.com/wrav/oembed/blob/master/README.md",
"issues": "https://github.com/wrav/oembed/issues"
},
"license": "MIT",
"authors": [
{
"name": "reganlawton",
"homepage": "https://github.com/reganlawton"
}
],
"require": {
"craftcms/cms": "^3.0.0-beta.23",
"embed/embed": "^3.3"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"wrav\\oembed\\": "src/"
}
},
"extra": {
"name": "oEmbed",
"handle": "oembed",
"schemaVersion": "1.0.1",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/wrav/oembed/master/CHANGELOG.md",
"components": {
"oembedService": "wrav\\oembed\\services\\OembedService"
},
"class": "wrav\\oembed\\Oembed"
}
}