-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
69 lines (69 loc) · 1.74 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": "spicyweb/craft-embedded-assets",
"description": "Manage YouTube videos, Instagram photos and more as first class assets",
"version": "5.4.1",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"plugin",
"embed",
"assets",
"youtube",
"vimeo",
"instagram"
],
"license": "MIT",
"authors": [
{
"name": "Spicy Web",
"homepage": "https://spicyweb.com.au"
}
],
"support": {
"issues": "https://github.com/spicywebau/craft-embedded-assets/issues",
"source": "https://github.com/spicywebau/craft-embedded-assets",
"docs": "https://github.com/spicywebau/craft-embedded-assets/blob/5.4.1/README.md",
"rss": "https://github.com/spicywebau/craft-embedded-assets/commits/5.x.atom"
},
"require": {
"craftcms/cms": "^5.0.0",
"embed/embed": "^4.4.10",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"spicyweb\\embeddedassets\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"handle": "embeddedassets",
"name": "Embedded Assets",
"schemaVersion": "1.0.0",
"class": "spicyweb\\embeddedassets\\Plugin",
"changelogUrl": "https://github.com/spicywebau/craft-embedded-assets/blob/5.x/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-embedded-assets/archive/5.4.1.zip"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/ecs": "dev-main"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}