forked from recca0120/laravel-tracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 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
43
44
45
46
{
"name": "recca0120/laravel-tracy",
"description": "A Laravel Package to integrate Nette Tracy Debugger",
"keywords": ["laravel", "debugbar", "profiler", "debug", "webprofiler", "nette", "tracy", "error", "error handler"],
"license": "MIT",
"authors": [
{
"name": "recca0120",
"email": "recca0120@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "^5.1",
"illuminate/database": "^5.1",
"illuminate/routing": "^5.1",
"illuminate/session": "^5.1",
"illuminate/support": "^5.1",
"illuminate/view": "^5.1",
"recca0120/terminal": "^1.6.7",
"tracy/tracy": "^2.4.0"
},
"require-dev": {
"mockery/mockery": "~0.9.4",
"phpunit/phpunit": "~4.8|~5.4|~6.1",
"nesbot/carbon": "~1.20"
},
"autoload": {
"files": [
"src/polyfill.php"
],
"psr-4": {
"Recca0120\\LaravelTracy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Recca0120\\LaravelTracy\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}