-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 993 Bytes
/
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
{
"name": "leanadmin/installer",
"description": "Installer for Lean Admin",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lean\\Installer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lean\\Installer\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2|^8.0",
"illuminate/console": "^8.24",
"illuminate/http": "^8.24",
"illuminate/support": "^8.24",
"illuminate/container": "^8.24"
},
"extra": {
"laravel": {
"providers": [
"Lean\\Installer\\LeanInstallerProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^6.9",
"vimeo/psalm": "^4.2",
"nunomaduro/larastan": "^0.6.10",
"guzzlehttp/guzzle": "^7.2"
}
}