-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
executable file
·69 lines (69 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
69
{
"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": "3.1.3",
"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-dev": {
"roave/security-advisories": "dev-latest"
},
"require": {
"craftcms/cms": "^4.0 | ^5.0",
"embed/embed": "^v4.4",
"ext-dom": "*"
},
"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"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}