-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.03 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "lubusin/laravel-decomposer",
"description": "A Laravel package to decompose your installed packages, their dependencies, your app & server environment",
"license": "MIT",
"type": "laravel-package",
"authors": [
{
"name": "Ajit Bohra",
"email": "ajit@lubus.in"
},
{
"name": "Punit Verma",
"email": "punit@lubus.in"
},
{
"name": "Harish Toshniwal"
}
],
"autoload": {
"psr-4": {
"Lubusin\\Decomposer\\": "src/"
}
},
"require": {
"php": "^7.2|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0"
},
"require-dev": {
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0"
},
"extra": {
"laravel": {
"providers": [
"Lubusin\\Decomposer\\DecomposerServiceProvider"
]
}
}
}