-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 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
40
41
42
43
44
45
{
"name": "tomkyle/matomo-api-client",
"description": "Client library for interacting with the Matomo API. Supports retry logic and PSR-6 caches.",
"keywords": ["matomo", "api", "client"],
"authors": [{
"name": "Carsten Witt",
"email": "[email protected]",
"role": "Developer"
}],
"license": "MIT",
"autoload": {
"psr-4": {
"tomkyle\\MatomoApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"psr/log": "^1.1|^2.0|^3.0",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"psr/log": "^2.0|^3.0",
"guzzlehttp/psr7": "^2.7",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.63",
"phpstan/phpstan": "^1.0|^2.0",
"tomkyle/find-run-test": "^1.0",
"rector/rector": "^1.2"
}
}