-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.05 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.05 KB
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
{
"name": "squareboat/sql-doctor",
"description": "Quickly debugging the amount of database queries per request in Laravel.",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "debug", "database", "queries"],
"authors": [
{
"name": "Amit Gupta",
"email": "akaamitgupta@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"illuminate/config": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"illuminate/http": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"illuminate/events": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"illuminate/database": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
"symfony/debug": "2.8.*|3.0.*|3.1.*|~3.2|~3.3"
},
"autoload": {
"psr-4": {
"SquareBoat\\SqlDoctor\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"SquareBoat\\SqlDoctor\\SqlDoctorServiceProvider"
]
}
}
}