-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.92 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
{
"name": "nswdpc/silverstripe-elemental-feature-video",
"description": "Feature video element Silverstripe",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"nsw",
"video",
"elemental"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mark Taylor",
"role": "Bon Vivant"
},
{
"name": "James Ellis",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"NSWDPC\\Elemental\\Models\\FeaturedVideo\\": [
"src/Controller/",
"src/Interfaces/",
"src/Models/",
"src/Models/Elements/",
"src/Traits/"
],
"NSWDPC\\Elemental\\Models\\FeaturedVideo\\Tests\\": "tests/"
}
},
"require": {
"silverstripe/framework": "^5",
"embed/embed": "^4.4",
"symbiote/silverstripe-gridfieldextensions" : "^4",
"dnadesign/silverstripe-elemental": "^5",
"gorriecoe/silverstripe-linkfield" : "^1.1",
"nswdpc/silverstripe-embed" : "^2",
"silverstripe/assets" : "^2",
"silverstripe/asset-admin" : "^2",
"silverstripe/versioned": "^2",
"nswdpc/silverstripe-inline-linker": "^1"
},
"require-dev": {
"cambis/silverstripe-rector": "^0.5.1",
"phpunit/phpunit": "^9.5",
"syntro/silverstripe-phpstan": "^5",
"nswdpc/ci-files": "^1"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/nswdpc/ci-files.git"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true,
"phpstan/extension-installer": true
}
}
}