forked from perftools/xhgui-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 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
{
"name": "perftools/xhgui-collector",
"description": "Library for collecting and storing XHProf results for later use by XHGUI.",
"authors": [
{
"name": "Lauri Piisang",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-0": {
"Xhgui_": "src/"
}
},
"require": {
"php": ">=5.3.0",
"paragonie/random_compat": ">=2.0"
},
"suggest": {
"ext-xhprof": "You need to install either xhprof or uprofiler to use XHGui.",
"ext-uprofiler": "You need to install either xhprof or uprofiler to use XHGui.",
"ext-mongo": "Mongo is needed to store profiler results for PHP < 7.",
"ext-mongodb": "Mongo is needed to store profiler results for PHP > 7.",
"ext-curl": "You need to install the curl extension to upload saved files",
"ext-json": "You need json extension to work with json on some linux systems",
"ext-pdo": "You need pdo extension with correct database driver loaded to work with PDO",
"alcaeus/mongo-php-adapter": "Mongo PHP Adapter is required for PHP >7 (when using ext-mongodb)"
}
}