-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1013 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
43
{
"name": "lara-zeus/installer",
"description": "filament application installer.",
"keywords": ["filamentphp"],
"license": "MIT",
"authors": [
{
"name": "php coder",
"email": "[email protected]",
"role": "Owner"
}
],
"require": {
"php": "^8.2",
"illuminate/filesystem": "^10.20|^11.0",
"illuminate/support": "^10.20|^11.0",
"laravel/prompts": "^0.1",
"symfony/console": "^6.2|^7.0",
"symfony/process": "^6.2|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4"
},
"bin": [
"bin/filament"
],
"autoload": {
"psr-4": {
"LaraZeus\\Installer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaraZeus\\Installer\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}