-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.33 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
{
"name": "nicholashamilton/craft-preview-mate",
"description": "Find live preview matrix blocks with ease.",
"type": "craft-plugin",
"keywords": [
"craft", "cms", "craftcms", "craft-plugin", "previewmate", "live preview"
],
"license": "mit",
"support": {
"email": "[email protected]",
"docs": "https://github.com/nicholashamilton/craft-preview-mate",
"source": "https://github.com/nicholashamilton/craft-preview-mate",
"issues": "https://github.com/nicholashamilton/craft-preview-mate/issues"
},
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.0"
},
"require-dev": {
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"nicholashamilton\\previewmate\\": "src/"
}
},
"extra": {
"name": "PreviewMate",
"handle": "preview-mate",
"developer": "nicholashamilton",
"developerUrl": "https://nicholashamilton.co/",
"documentationUrl": "https://github.com/nicholashamilton/craft-preview-mate",
"changelogUrl": "https://github.com/nicholashamilton/craft-preview-mate/blob/craft-5/CHANGELOG.md",
"class": "nicholashamilton\\previewmate\\PreviewMate"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}