forked from dmitry-ivanov/laravel-db-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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": "illuminated/db-profiler",
"description": "Provides database queries profiling for Laravel http and console applications.",
"keywords": ["laravel", "db", "database", "profiler", "profiling", "mysql"],
"license": "MIT",
"authors": [
{
"name": "Dmitry Ivanov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"illuminate/support": "5.6.*",
"illuminate/database": "5.6.*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "3.6.*",
"illuminated/testing-tools": "5.6.*",
"illuminated/helper-functions": "5.6.*"
},
"autoload": {
"psr-4": {
"Illuminated\\Database\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/DbProfiler/TestCase.php",
"tests/DbProfiler/fixture/app"
]
},
"extra": {
"laravel": {
"providers": [
"Illuminated\\Database\\DbProfilerServiceProvider"
]
}
}
}