forked from upscalesoftware/swoole-blackfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.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
{
"name": "upscale/swoole-blackfire",
"description": "Blackfire profiler integration for Swoole web-server",
"version": "4.2.0",
"keywords": ["Swoole", "Blackfire", "Blackfire.io", "profiler", "profiling", "integration", "companion"],
"homepage": "https://github.com/upscalesoftware/swoole-blackfire",
"license": "Apache-2.0",
"authors": [
{
"name": "Upscale Software Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"blackfire/php-sdk": "^1.16||^2.0",
"upscale/ext-swoole": "^4.0||^5.0",
"upscale/ext-openswoole": "^4.0||^22.0",
"upscale/swoole-reflection": "^2.0||^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"upscale/swoole-launchpad": "^2.0"
},
"autoload": {
"psr-4": {"Upscale\\Swoole\\Blackfire\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Upscale\\Swoole\\Blackfire\\Tests\\": "tests/",
"Upscale\\Swoole\\Launchpad\\Tests\\": "vendor/upscale/swoole-launchpad/tests/"
}
}
}