forked from jalendport/craft-readtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.35 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
{
"name": "jalendport/craft-readtime",
"description": "Calculate the estimated read time for content.",
"type": "craft-plugin",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"average read time"
],
"support": {
"docs": "https://github.com/jalendport/craft-readtime/blob/master/README.md",
"issues": "https://github.com/jalendport/craft-readtime/issues"
},
"license": "MIT",
"authors": [
{
"name": "Jalen Davenport",
"homepage": "https://jalendport.com"
},
{
"name": "Luke Youell",
"homepage": "https://github.com/lukeyouell"
}
],
"require": {
"craftcms/cms": "^5.4.8",
"verbb/super-table": "^4.0"
},
"autoload": {
"psr-4": {
"jalendport\\readtime\\": "src/"
}
},
"extra": {
"name": "Read Time",
"handle": "read-time",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/jalendport/craft-readtime/master/CHANGELOG.md",
"class": "jalendport\\readtime\\ReadTime"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}