-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·42 lines (42 loc) · 1.03 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": "isotopes/profiler",
"description": "Profiler is a replica of Laravel Telescope modified for MongoDB.",
"keywords": ["laravel", "monitoring", "debugging", "profiler"],
"license": "MIT",
"authors": [
{
"name": "Hussain Ahmad",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"jenssegers/mongodb": "^3.6",
"laravel/framework": "^5.8",
"league/flysystem": "^1.0",
"moontoast/math": "^1.2",
"symfony/var-dumper": "^4.2"
},
"require-dev": {
"ext-gd": "*",
"orchestra/testbench": "^3.8"
},
"autoload": {
"psr-4": {
"Isotopes\\Profiler\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Isotopes\\Profiler\\ProfilerServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}