-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·45 lines (45 loc) · 1.45 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
{
"name": "daandelange/simplestats",
"description": "Very minimal visitor analytics for your kirby3 website.",
"homepage": "https://github.com/Daandelange/kirby3-simplestats",
"type": "kirby-plugin",
"version": "0.6.6-beta",
"license": "MIT",
"authors": [
{
"name": "Daan de Lange",
"role": "Developer"
}
],
"keywords": [
"kirby3",
"kirby3-plugin",
"simplestats",
"analytics"
],
"require": {
"getkirby/composer-installer": "^1.1",
"snowplow/referer-parser": "^0.2.0",
"buzz/which-browser-parser": "^2.1"
},
"autoload": {
"psr-4": {
"daandelange\\SimpleStats\\": "src/models/"
}
},
"scripts": {
"post-update-cmd": [
"curl -s https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-latest.yaml --output `composer config vendor-dir --absolute`/snowplow/referer-parser/php/data/referers.yml",
"curl -s https://s3-eu-west-1.amazonaws.com/snowplow-hosted-assets/third-party/referer-parser/referers-latest.json --output `composer config vendor-dir --absolute`/snowplow/referer-parser/php/data/referers.json"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "simplestats"
}
}