-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (66 loc) · 1.44 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
59
60
61
62
63
64
65
66
{
"name": "mmikkel/child-me",
"description": "Easily create child elements",
"type": "craft-plugin",
"version": "2.2.3",
"keywords":
[
"craft",
"cms",
"craftcms",
"craft-plugin",
"child me"
],
"support":
{
"docs": "https://github.com/mmikkel/ChildMe-Craft/blob/master/README.md",
"issues": "https://github.com/mmikkel/ChildMe-Craft/issues"
},
"license": "MIT",
"authors":
[
{
"name": "Mats Mikkel Rummelhoff",
"homepage": "https://vaersaagod.no"
}
],
"require":
{
"craftcms/cms": "^5.0.0",
"php": "^8.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config":
{
"allow-plugins":
{
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"repositories":
[
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload":
{
"psr-4":
{
"mmikkel\\childme\\": "src/"
}
},
"extra":
{
"name": "Child Me!",
"handle": "child-me",
"schemaVersion": "1.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/mmikkel/ChildMe-Craft/master/CHANGELOG.md",
"class": "mmikkel\\childme\\ChildMe"
}
}