-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "promatur/sc-analytics",
"version": "v1.1.5",
"type": "library",
"description": "A combination of clientside and serverside analytics for PHP-based websites.",
"keywords": [
"javascript",
"php",
"privacy",
"web",
"analytics",
"google-analytics",
"web-analytics",
"matomo"
],
"homepage": "https://promatur.com/",
"readme": "README.md",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Jan-Nicklas Adler",
"email": "[email protected]",
"homepage": "https://www.promatur.com/",
"role": "Developer"
}
],
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/adlerjan"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Promatur/sc-analytics/issues",
"source": "https://github.com/Promatur/sc-analytics"
},
"autoload": {
"psr-4": {
"ScAnalytics\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"require": {
"php": "^7.3|^8.0",
"frontpack/composer-assets-plugin": "^0.11.0",
"moneyphp/money": "^3.3",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"phpstan/phpstan": "^1.4",
"sentry/sdk": "^3.1"
},
"suggest": {
"sentry/sdk": "Error handling"
},
"extra": {
"assets-files": "Assets",
"assets-dir": "libraries",
"assets-strategy": "copy"
},
"config": {
"allow-plugins": {
"frontpack/composer-assets-plugin": true,
"php-http/discovery": true
}
}
}