-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
58 lines (58 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
{
"name": "weareferal/matrix-field-preview",
"description": "Add screenshot previews to matrix and neo fields, helping you publish content quicker.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"plugin",
"neo",
"matrix",
"field",
"matrix field preview"
],
"support": {
"docs": "https://craft-plugins.timmyomahony.com/matrix-field-preview",
"issues": "https://github.com/timmyomahony/matrix-field-preview/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Timmy O'Mahony ",
"homepage": "https://timmyomahony.com"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"weareferal\\matrixfieldpreview\\": "src/"
}
},
"extra": {
"name": "Matrix Field Preview",
"handle": "matrix-field-preview",
"hasCpSettings": true,
"changelogUrl": "https://raw.githubusercontent.com/timmyomahony/matrix-field-preview/master/CHANGELOG.md",
"class": "weareferal\\matrixfieldpreview\\MatrixFieldPreview"
},
"suggest": {
"spicyweb/craft-neo": "Matrix Field Preview supports Neo >= 3.0.0",
"verbb/super-table ": "Matrix Field Preview supports Super Table",
"doublesecretagency/craft-spoon ": "Matrix Field Preview supports Spoon"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
}
}