-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 958 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
{
"name": "capsules-codes/doom-native-php",
"type": "project",
"description": "Doom NativePHP",
"license": "MIT",
"require": {
"php": "^8.3.0",
"inertiajs/inertia-laravel": "^2.0.1",
"laravel/framework": "^11.43.2",
"nativephp/electron": "^1.0.0-beta.1"
},
"require-dev": {
"nunomaduro/collision": "^8.6.1"
},
"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": {}
},
"minimum-stability": "stable",
"prefer-stable": true
}