-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.36 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
{
"name": "homm/hommicons",
"description": "Craft CMS Icon Picker",
"type": "craft-plugin",
"version": "1.1.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"hommicons",
"icon picker"
],
"support": {
"docs": "https://github.com/HOMMinteractive/hommicons/blob/master/README.md",
"issues": "https://github.com/HOMMinteractive/hommicons/issues"
},
"license": "MIT",
"authors": [
{
"name": "Benjamin Ammann",
"homepage": "https://github.com/ammannbe"
},
{
"name": "Domenik Hofer",
"homepage": "https://www.homm.ch"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^4.0.0|^5.0.0",
"ext-json": "*",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"homm\\hommicons\\": "src/"
}
},
"extra": {
"name": "HOMM Icons",
"handle": "hommicons",
"developer": "HOMM interactive",
"developerUrl": "https://github.com/HOMMinteractive",
"documentationUrl": "https://github.com/HOMMinteractive/hommicons/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/HOMMinteractive/hommicons/master/CHANGELOG.md",
"class": "homm\\hommicons\\HOMMIcons"
}
}