-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "ournameismud/fractal",
"description": "Custom Fractal plugin",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"fractal"
],
"support": {
"docs": "https://github.com/rjgux/fractal/blob/master/README.md",
"issues": "https://github.com/rjgux/fractal/issues"
},
"license": "MIT",
"authors": [
{
"name": "Rich @ Mud",
"homepage": "http://ournameismud.co.uk/"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"ournameismud\\fractal\\": "src/"
}
},
"extra": {
"name": "Fractal",
"handle": "fractal",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/rjgux/fractal/master/CHANGELOG.md",
"class": "ournameismud\\fractal\\Fractal"
}
}