-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 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": "ion-bazan/laravel-container-debug",
"type": "library",
"description": "Lists available services in Laravel IoC Container. Works with Laravel 5.4-11.x",
"keywords": [
"laravel",
"container",
"debug",
"services",
"command"
],
"license": "MIT",
"authors": [
{
"name": "Ion Bazan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"illuminate/console": "^5.4 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"illuminate/container": "^5.4 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5 || ^6"
},
"extra": {
"laravel": {
"providers": [
"IonBazan\\Laravel\\ContainerDebug\\ServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"IonBazan\\Laravel\\ContainerDebug\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IonBazan\\Laravel\\ContainerDebug\\Tests\\": "tests"
}
},
"minimum-stability": "dev"
}