forked from putyourlightson/craft-entry-count
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.12 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
{
"name": "putyourlightson/craft-entry-count",
"description": "Counts and displays the number of times that an entry has been viewed.",
"version": "2.0.2",
"type": "craft-plugin",
"homepage": "https://www.putyourlightson.net/craft-entry-count",
"license": "MIT",
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"putyourlightson\\entrycount\\": "src/"
}
},
"support": {
"docs": "https://putyourlightson.com/plugins/entry-count",
"source": "https://github.com/putyourlightson/craft-entry-count",
"issues": "https://github.com/putyourlightson/craft-entry-count/issues"
},
"extra": {
"name": "Entry Count",
"handle": "entry-count",
"developer": "PutYourLightsOn",
"developerUrl": "https://www.putyourlightson.net/",
"schemaVersion": "2.0.0",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-entry-count/v2/CHANGELOG.md",
"class": "putyourlightson\\entrycount\\EntryCount"
}
}