-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
53 lines (53 loc) · 1.35 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
{
"name": "viget/craft-video-embed",
"description": "Generate an embed URL from a YouTube or Vimeo URL",
"type": "craft-plugin",
"version": "2.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"video embed"
],
"support": {
"docs": "https://github.com/vigetlabs/craft-videoembed/blob/v2/README.md",
"issues": "https://github.com/vigetlabs/craft-videoembed/issues"
},
"license": "MIT",
"authors": [
{
"name": "Viget",
"homepage": "https://www.viget.com/"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"viget\\videoembed\\": "src/"
}
},
"extra": {
"name": "Video Embed",
"handle": "video-embed",
"schemaVersion": "2.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/vigetlabs/craft-videoembed/v2/CHANGELOG.md",
"class": "viget\\videoembed\\VideoEmbed"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "*"
},
"scripts": {
"phpunit": "vendor/bin/phpunit --colors=auto"
}
}