-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
56 lines (56 loc) · 1.41 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
{
"name": "vaersaagod/matrixmate",
"description": "Welding Matrix into shape, mate!",
"type": "craft-plugin",
"version": "2.2.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"matrixmate"
],
"support": {
"docs": "https://github.com/vaersaagod/matrixmate/blob/master/README.md",
"issues": "https://github.com/vaersaagod/matrixmate/issues"
},
"license": "MIT",
"authors": [
{
"name": "Værsågod",
"homepage": "https://vaersaagod.no"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"php": "^8.0.2"
},
"require-dev": {
"craftcms/rector": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"autoload": {
"psr-4": {
"vaersaagod\\matrixmate\\": "src/"
}
},
"extra": {
"name": "MatrixMate",
"handle": "matrixmate",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/vaersaagod/matrixmate/master/CHANGELOG.md",
"class": "vaersaagod\\matrixmate\\MatrixMate"
}
}