-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.35 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.35 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fruitcake/laravel-debugbar",
"description": "PHP Debugbar integration for Laravel",
"keywords": [
"laravel",
"debugbar",
"profiler",
"debug",
"webprofiler",
"barryvdh",
"dev"
],
"license": "MIT",
"authors": [
{
"name": "Fruitcake",
"homepage": "https://fruitcake.nl"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
"require": {
"php": "^8.2",
"php-debugbar/php-debugbar": "^3.5",
"php-debugbar/symfony-bridge": "^1.1",
"illuminate/routing": "^11|^12|^13.0",
"illuminate/session": "^11|^12|^13.0",
"illuminate/support": "^11|^12|^13.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench-dusk": "^9|^10|^11",
"phpunit/phpunit": "^11",
"larastan/larastan": "^3",
"phpstan/phpstan-phpunit": "^2",
"laravel/pint": "^1",
"livewire/livewire": "^3.7|^4",
"phpstan/phpstan-strict-rules": "^2.0",
"shipmonk/phpstan-rules": "^4.3",
"laravel/octane": "^2",
"laravel/pennant": "^1",
"php-debugbar/twig-bridge": "^2.0",
"laravel/telescope": "^5.16"
},
"replace": {
"barryvdh/laravel-debugbar": "self.version"
},
"autoload": {
"psr-4": {
"Fruitcake\\LaravelDebugbar\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Fruitcake\\LaravelDebugbar\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
},
"laravel": {
"providers": [
"Fruitcake\\LaravelDebugbar\\ServiceProvider"
],
"aliases": {
"Debugbar": "Fruitcake\\LaravelDebugbar\\Facades\\Debugbar"
}
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=1G",
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"test": "vendor/bin/phpunit",
"docs": "vendor/bin/phpunit --filter=testItInjectsOnDocs && php build/build-docs.php && mkdocs build"
}
}