forked from francodacosta/grav-plugin-page-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1008 Bytes
/
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
{
"name": "nuno-costa/page-stats",
"type": "grav-plugin",
"description": "Enhaced statistics for grav. This site or product includes IP2Location LITE data available from http://www.ip2location.com",
"keywords": [
"plugin"
],
"homepage": "https://github.com/nuno-costa/grav-plugin-page-stats",
"license": "MIT",
"authors": [
{
"name": "Nuno Costa",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.3",
"ext-sqlite3": "*",
"ext-pdo": "*",
"ip2location/ip2location-php": "^8.3"
},
"autoload": {
"psr-4": {
"Grav\\Plugin\\PageStats\\": "classes/"
},
"classmap": [
"page-stats.php"
]
},
"config": {
"platform": {
"php": "7.1.3"
}
},
"require-dev": {
"marcocesarato/php-conventional-changelog": "^1.15"
},
"version": "2.5.1
}