-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
33 lines (33 loc) · 998 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
{
"name": "laynefyc/php-monitor",
"description": "A free, flexible, powerful tool that helps you monitor PHP Service.",
"license": "MIT",
"authors": [
{
"name": "layne.fyc",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-json": "*",
"illuminate/database": "~5.8",
"jenssegers/mongodb": "^3.5",
"illuminate/pagination": "^5.8"
},
"suggest": {
"ext-xhprof": "You need to install either xhprof or uprofiler.",
"ext-uprofiler": "You need to install either xhprof or uprofiler.",
"ext-mongodb": "Mongo is needed to store profiler results.",
"ext-sqlite3": "sqlite3 is needed to store profiler results.",
"ext-pdo_mysql": "pdo_mysql is needed to store profiler results."
},
"autoload": {
"psr-4": {
"pm\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0"
}
}