-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 989 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
40
{
"name": "matfish/craft-blogify",
"description": "A plug-and-play blog for CraftCMS",
"type": "craft-plugin",
"keywords": [
"blog",
"craft"
],
"license": "proprietary",
"authors": [
{
"name": "Mat Fish",
"homepage": "https://github.com/matfish2/craft-blog"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/matfish2/craft-blogify/issues?state=open",
"source": "https://github.com/matfish2/craft-blogify",
"docs": "https://github.com/matfish2/craft-blogify/blob/master/README.md"
},
"require": {
"craftcms/cms": "^3.7.0",
"craftcms/redactor": "^2.8"
},
"autoload": {
"psr-4": {
"matfish\\Blogify\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"name": "Blogify",
"handle": "blogify",
"changelogUrl": "https://raw.githubusercontent.com/matfish2/craft-blogify/master/CHANGELOG.md",
"class": "matfish\\Blogify\\Blogify"
}
}