-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.11 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
{
"name" : "mho22/doom-mobile-php",
"type" : "project",
"description" : "DOOM on android",
"keywords": [ "laravel", "framework" ],
"license" : "MIT",
"require" : {
"php" : "^8.2",
"inertiajs/inertia-laravel" : "^1.0",
"laravel/framework" : "^11.0",
"laravel/tinker" : "^2.9"
},
"require-dev" : {
"nunomaduro/collision" : "^8.0",
"spatie/laravel-ignition" : "^2.4"
},
"autoload" : {
"psr-4" : {
"App\\" : "app/"
}
},
"scripts" : {
"post-autoload-dump" : [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"extra" : {
"laravel" : {
"dont-discover" : []
}
},
"config" : {
"optimize-autoloader" : true,
"preferred-install" : "dist",
"sort-packages" : true,
"allow-plugins" : {
"pestphp/pest-plugin" : true,
"php-http/discovery" : true
}
},
"minimum-stability" : "stable",
"prefer-stable" : true
}