-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
56 lines (56 loc) · 1.48 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
{
"name": "dynamic/silverstripe-elemental-oembed",
"description": "A block to embed media from other websites via oEmbed",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"elemental",
"content",
"blocks",
"oembed"
],
"authors": [
{
"name": "Dynamic",
"email": "[email protected]",
"homepage": "http://www.dynamicagency.com"
}
],
"require": {
"dnadesign/silverstripe-elemental": "^5.0",
"dnadesign/silverstripe-embed": "dev-master",
"gorriecoe/silverstripe-htmltag": "dev-bugfix/depreciations as 1.1.0",
"silverstripe/asset-admin": "^2.0"
},
"require-dev": {
"silverstripe/recipe-testing": "^3"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:jsirish/silverstripe-htmltag.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\Elements\\Oembed\\": "src/",
"Dynamic\\Elements\\Oembed\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
},
"process-timeout": 600
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}