-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.51 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": "mediakreativ/craft-blocksmith",
"description": "Enhances Craft's Matrix fields with block previews and a user-friendly block selection modal.",
"type": "craft-plugin",
"version": "1.2.3",
"keywords": [
"craftcms",
"craft",
"matrix",
"matrix fields",
"entry types",
"block previews",
"blocksmith",
"content blocks",
"UX",
"modal"
],
"license": "proprietary",
"authors": [
{
"name": "Christian Schindler",
"role": "Developer",
"homepage": "https://mediakreativ.de"
}
],
"support": {
"email": "[email protected]",
"docs": "https://github.com/mediakreativ/craft-blocksmith",
"issues": "https://github.com/mediakreativ/craft-blocksmith/issues?state=open",
"source": "https://github.com/mediakreativ/craft-blocksmith",
"rss": "https://github.com/mediakreativ/craft-blocksmith/releases.atom"
},
"require": {
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"mediakreativ\\blocksmith\\": "src/"
}
},
"extra": {
"handle": "blocksmith",
"name": "Blocksmith",
"documentationUrl": "https://github.com/mediakreativ/craft-blocksmith",
"changelogUrl": "https://raw.githubusercontent.com/mediakreativ/craft-blocksmith/master/CHANGELOG.md",
"class": "mediakreativ\\blocksmith\\Blocksmith"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}