-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathcomposer.json
39 lines (39 loc) · 1.07 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
{
"name": "matomo/tracker-proxy",
"description": "HTTP proxy for Matomo's tracker API. This script allows to track websites with Matomo without revealing to your visitors the secret Matomo server URL.",
"type": "project",
"license": "GPL-3.0+",
"authors": [
{
"name": "The Matomo Team",
"email": "[email protected]",
"homepage": "https://matomo.org/team/"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/matomo-org/matomo-coding-standards.git"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3 || ^10.1",
"matomo-org/matomo-coding-standards": "dev-master",
"guzzlehttp/guzzle": "^6.5",
"squizlabs/php_codesniffer": "^3.9"
},
"scripts": {
"test": [
"phpunit tests/"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}