forked from nicholashamilton/craft-preview-mate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 1.4 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
{
"name": "nicholashamilton/craft-preview-mate",
"description": "CraftCMS matrix tools for Live Preview.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"previewmate"
],
"support": {
"docs": "https://github.com/nicholashamilton/craft-preview-mate/blob/master/README.md",
"issues": "https://github.com/nicholashamilton/craft-preview-mate/issues"
},
"license": "MIT",
"authors": [
{
"name": "Nicholas Hamilton",
"homepage": "https://github.com/nicholashamilton"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"nicholashamilton\\previewmate\\": "src/"
}
},
"extra": {
"name": "PreviewMate",
"handle": "preview-mate",
"developer": "Nicholas Hamilton",
"developerUrl": "https://github.com/nicholashamilton",
"documentationUrl": "https://github.com/nicholashamilton/craft-preview-mate/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/nicholashamilton/craft-preview-mate/master/CHANGELOG.md",
"components": {
"previewMateService": "nicholashamilton\\previewmate\\services\\PreviewMateService"
},
"class": "nicholashamilton\\previewmate\\PreviewMate"
}
}