-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
66 lines (66 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/routing": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/session": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/view": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"recca0120/terminal": "^1.8",
"tracy/tracy": ">=2.4,<2.9"
},
"require-dev": {
"mockery/mockery": "^1.0",
"nesbot/carbon": "^1.20|^2.0",
"orchestra/testbench": "^2.0|^3.0|^4.18|^5.20|^6.23|^7.0|^8.0",
"phpunit/phpunit": "^4.8|^5.4|^6.1|^7.0|^8.0|^9.0"
},
"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
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Recca0120\\LaravelTracy\\LaravelTracyServiceProvider"
]
}
}
}