-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.28 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
{
"name": "mdxdave/time-ago",
"description": "Displays time ago for timestamp",
"type": "craft-plugin",
"version": "1.1.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"timeago"
],
"support": {
"docs": "https://github.com/mdxdave/time-ago/blob/master/README.md",
"issues": "https://github.com/mdxdave/time-ago/issues"
},
"license": "MIT",
"authors": [
{
"name": "MDXDave",
"homepage": "https://mdxdave.de"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"nesbot/carbon": "^2.0.0"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"kylekatarnls/update-helper": true
}
},
"autoload": {
"psr-4": {
"mdxdave\\timeago\\": "src/"
}
},
"extra": {
"name": "TimeAgo",
"handle": "time-ago",
"schemaVersion": "1.1.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/mdxdave/time-ago/master/CHANGELOG.md",
"class": "mdxdave\\timeago\\TimeAgo"
}
}