-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.42 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
50
51
52
53
54
55
{
"name": "bymayo/follow",
"description": "Let users follow other users and elements (Categories, Tags etc) to generate lists & feeds.",
"type": "craft-plugin",
"version": "5.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"follow"
],
"support": {
"docs": "https://plugins.bymayo.co.uk/follow/",
"issues": "https://github.com/bymayo/craft-follow/issues"
},
"license": "MIT",
"authors": [
{
"name": "ByMayo",
"homepage": "https://bymayo.co.uk"
}
],
"require": {
"craftcms/cms": "^5.0.0"
},
"autoload": {
"psr-4": {
"bymayo\\follow\\": "src/"
}
},
"extra": {
"name": "Follow",
"handle": "follow",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/bymayo/craft-follow/craft-5/CHANGELOG.md",
"components": {
"followService": "bymayo\\follow\\services\\FollowService"
},
"class": "bymayo\\follow\\Follow"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/phpstan": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}