-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 873 Bytes
/
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
{
"name": "stevad/yii2-xhprof",
"description": "Simple extension to profile Yii Framework 2.x applications with Facebook XHProf",
"keywords": [
"yii",
"yii2",
"extension",
"profiling",
"debug",
"xhprof"
],
"homepage": "https://github.com/stevad/yii2-xhprof",
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "2.0.*"
},
"require-dev": {
"yiisoft/yii2-debug": ">=2.0.6"
},
"suggest": {
"ext-xhprof": "* - for PHP < 7.0",
"ext-tideways_xhprof": "* - for PHP >= 7.0"
},
"authors": [
{
"name": "Vadym Stepanov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"stevad\\xhprof\\": ""
}
}
}