-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.17 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
{
"name": "zoon/pyrospy",
"description": "Adapter from phpspy to pyroscope",
"type": "project",
"license": "MIT",
"keywords": [
"phpspy",
"pyroscope",
"profiler",
"adapter"
],
"minimum-stability": "beta",
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-json": "*",
"ext-curl": "*",
"amphp/amp": "^3.0",
"revolt/event-loop": "^1.0",
"amphp/http-client": "^5",
"amphp/byte-stream": "^2.0",
"symfony/console": "^5|^6",
"amphp/pipeline": "^1.0"
},
"autoload": {
"psr-4": {
"Zoon\\PyroSpy\\": "app/"
}
},
"require-dev": {
"psalm/phar": "^5.9",
"phpunit/phpunit": "^11.2",
"friendsofphp/php-cs-fixer": "^3.59",
"dg/bypass-finals": "^1.8"
},
"scripts": {
"test:cs": "./vendor/bin/php-cs-fixer fix --diff --config=.php-cs-fixer.dist.php",
"test:psalm": "./vendor/bin/psalm.phar --show-info=true",
"test:unit": "./vendor/bin/phpunit",
"test": [
"@test:cs",
"@test:psalm",
"@test:unit"
]
}
}