-
Notifications
You must be signed in to change notification settings - Fork 83
/
composer.json
37 lines (37 loc) · 1 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
{
"name": "matomo/matomo-php-tracker",
"description": "PHP Client for Matomo Analytics Tracking API",
"keywords": ["matomo","piwik","tracker","analytics"],
"homepage": "https://matomo.org",
"license": "BSD-3-Clause",
"authors": [
{
"name": "The Matomo Team",
"email": "[email protected]",
"homepage": "https://matomo.org/team/"
}
],
"support": {
"forum": "https://forum.matomo.org/",
"issues": "https://github.com/matomo-org/matomo-php-tracker/issues",
"source": "https://github.com/matomo-org/matomo-php-tracker"
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*"
},
"suggest": {
"ext-curl": "Using this extension to issue the HTTPS request to Matomo"
},
"autoload": {
"classmap": ["."]
},
"autoload-dev": {
"psr-4": {
"\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3 || ^10.1"
}
}