-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.11 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
{
"name": "marekskopal/buggregator-client",
"type": "library",
"description": "Buggregator client library for xhprof as PSR-15 middleware",
"keywords": [
"buggregator",
"xhprof"
],
"license": "MIT",
"authors": [
{
"name": "Marek Skopal",
"homepage": "https://www.marekskopal.cz"
}
],
"require": {
"php": ">=8.2",
"psr/http-client": "^1.0",
"psr/http-server-middleware": "^1.0",
"php-http/discovery": "^1.19"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^10.2",
"spatie/ray": "^1.39",
"slevomat/coding-standard": "^8.14",
"phpstan/phpstan-strict-rules": "^1.5"
},
"autoload": {
"psr-4": {
"MarekSkopal\\BuggregatorClient\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}