-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1.25 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
{
"name": "aaron-dev/xhprof-laravel",
"description": "aaron-dev/xhprof-laravel is a code performance analysis plugin that is compatible with laravel. Mainly optimize and adjust the old and unusable xhprof for adapting to webman, making installation simple and fast.Developers can quickly access performance analysis reports through browsers to troubleshoot code performance issues.",
"keywords": [
"aaron",
"aaron-dev",
"erik",
"xhprof",
"xhprof-laravel",
"laravel"
],
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "erik",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/erikwang2013/xhprof-laravel/issues",
"source": "https://github.com/erikwang2013/xhprof-laravel"
},
"require": {
"php": ">=7.4",
"ext-xhprof": "*"
},
"autoload": {
"psr-4": {
"Aaron\\Xhprof\\": "src/Xhprof"
}
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}