-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.3 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
{
"name": "ournameismud/lorient",
"description": "Custom functionality for Lorient CMS",
"type": "craft-plugin",
"version": "0.1.20",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"lorient"
],
"support": {
"docs": "https://github.com/cole007/lorient/blob/master/README.md",
"issues": "https://github.com/cole007/lorient/issues"
},
"license": "MIT",
"authors": [
{
"name": "@cole007",
"homepage": "http://ournameismud.co.uk/"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"ournameismud\\lorient\\": "src/"
}
},
"extra": {
"name": "Lorient",
"handle": "lorient",
"hasCpSettings": false,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/cole007/lorient/master/CHANGELOG.md",
"components": {
"addresses": "ournameismud\\lorient\\services\\Addresses",
"favourites": "ournameismud\\lorient\\services\\Favourites",
"orders": "ournameismud\\lorient\\services\\Orders",
"samples": "ournameismud\\lorient\\services\\Samples"
},
"class": "ournameismud\\lorient\\Lorient"
}
}