-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
50 lines (50 loc) · 1.22 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
{
"name": "misterbk/mix",
"description": "Helper plugin for Laravel Mix in Craft CMS templates",
"type": "craft-plugin",
"license": "MIT",
"keywords": [
"craft",
"craft4",
"craftcms",
"craft-plugin",
"mix",
"laravel-mix"
],
"authors": [
{
"name": "mister bk! GmbH",
"email": "info@mister-bk.de",
"homepage": "https://www.mister-bk.de/"
}
],
"require": {
"craftcms/cms": "^4.0.0-alpha|^5.0.0"
},
"autoload": {
"psr-4": {
"misterbk\\mix\\": "src/"
}
},
"extra": {
"name": "Mix",
"handle": "mix",
"schemaVersion": "1.0.0",
"developerEmail": "dev@mister-bk.de",
"documentationUrl": "https://github.com/mister-bk/craft-plugin-mix/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/mister-bk/craft-plugin-mix/master/CHANGELOG.md",
"downloadUrl": "https://github.com/mister-bk/craft-plugin-mix/archive/master.zip",
"hasCpSettings": true,
"hasCpSection": false,
"components": {
"mix": "misterbk\\mix\\services\\MixService"
},
"class": "misterbk\\mix\\Mix"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}