-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.39 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
{
"name": "awilum/craft-reading-time",
"description": "Reading Time plugin shows the estimated reading time of the content, in seconds or minutes.",
"type": "craft-plugin",
"keywords": ["twig", "craft", "craft-plugin", "craftcms"],
"license": "MIT",
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://awilum.github.io/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/awilum/craft-reading-time/issues?state=open",
"source": "https://github.com/awilum/craft-reading-time",
"docs": "https://github.com/awilum/craft-reading-time/master/README.md"
},
"require": {
"craftcms/cms": "^4.3.3"
},
"autoload": {
"psr-4": {
"Awilum\\CraftReadingTime\\": "src/"
},
"files": ["src/functions.php"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"name": "Reading Time",
"handle": "reading-time",
"class": "Awilum\\CraftReadingTime\\ReadingTime"
},
"require-dev": {
"ext-iconv": "*",
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.8.0"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
}
}