-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
49 lines (49 loc) · 1.12 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
47
48
49
{
"name": "perftools/php-profiler",
"description": "PHP Profiling based on XHGui",
"license": "MIT",
"authors": [
{
"name": "Lauri Piisang",
"email": "[email protected]"
},
{
"name": "Elan Ruusamäe",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Xhgui\\Profiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xhgui\\Profiler\\Test\\": "tests/"
}
},
"require": {
"php": "^5.3.0 || ^7.0 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"perftools/xhgui-collector": "^1.8"
},
"conflict": {
"perftools/xhgui-collector": "<1.8"
},
"suggest": {
"ext-curl": "cURL extension for upload saver",
"ext-mongo": "mongo extension (PHP>=5.3,<7.0)",
"ext-mongodb": "mongodb extension (PHP>=5.4)",
"ext-tideways": "Use tideways to profile",
"ext-uprofiler": "Use uprofiler to profile",
"ext-xhprof": "Use xhprof to profile",
"alcaeus/mongo-php-adapter": "Adapter to provide ext-mongo interface on top of mongo-php-library (PHP>=5.6)",
"perftools/xhgui-collector": "For mongodb or pdo savers"
}
}