forked from perftools/xhgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1.14 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
{
"name": "perftools/xhgui",
"description": "A web based interface for viewing profile data collected by XHProf.",
"license": "MIT",
"autoload": {
"psr-0": {
"Xhgui_": "src/"
}
},
"require": {
"php": "^5.6 || ^7.0",
"slim/slim": "^2.6.3",
"slim/views": "^0.1.0",
"twig/twig": "~1.17",
"pimple/pimple": "^1.0.2",
"perftools/xhgui-collector": "^1.7.0"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"phpunit/phpunit": "^5.7.27 | ^6.5.13"
},
"scripts": {
"test": "phpunit",
"cover": "phpunit --coverage-clover=unittest-coverage.clover"
},
"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)"
}
}