-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
30 lines (30 loc) · 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
{
"name": "perftools/xhgui",
"description": "A web based interface for viewing profile data collected by XHProf.",
"version": "0.1",
"license": "MIT",
"autoload": {
"psr-0": {
"Xhgui_": "src/"
}
},
"require": {
"php": ">=5.3.0",
"slim/slim": "2.3.1",
"slim/views": "0.1.0",
"twig/twig": "^1.13.1",
"pimple/pimple": "1.0.2"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.0",
"phpunit/phpunit": "3.7.x-dev",
"ext-dom": "*"
},
"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.",
"alcaeus/mongo-php-adapter": "Mongo PHP Adapter is required for PHP >7 (when using ext-mongodb)"
}
}