-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.33 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": "fruitstudios/listit",
"description": "Follow, Favourite, Bookmark, Like & Subscribe.",
"type": "craft-plugin",
"version": "1.0.13",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"listit",
"follow",
"favourite",
"bookmark",
"like",
"subscribe"
],
"support": {
"docs": "https://github.com/fruitstudios/craft-listit/blob/master/README.md",
"issues": "https://github.com/fruitstudios/craft-listit/issues"
},
"license": "MIT",
"authors": [
{
"name": "Fruit Studios",
"homepage": "https://fruitstudios.co.uk"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"fruitstudios\\listit\\": "src/"
}
},
"extra": {
"name": "Listit",
"handle": "listit",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/fruitstudios/craft-listit/master/CHANGELOG.md",
"components": {
"listService": "fruitstudios\\listit\\services\\ListService",
"subscriptionService": "fruitstudios\\listit\\services\\SubscriptionService"
},
"class": "fruitstudios\\listit\\Listit"
}
}