chore: update files to the latest laravel skeleton

This commit is contained in:
peaklabs-dev 2026-02-24 16:45:30 +01:00
parent 48b63f950f
commit beeb7eec69
No known key found for this signature in database
3 changed files with 13 additions and 7 deletions

View file

@ -43,16 +43,15 @@
"scripts": {
"setup": [
"composer install",
"@php -r \"file_exists('.env') || copy('.env.local.example', '.env');\"",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan key:generate --ansi",
"@php artisan migrate --force --ansi",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate",
"@php artisan migrate --force",
"bun install",
"bun run build"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"bunx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"bun run dev\" --names=server,queue,logs,vite --kill-others"
"bunx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1 --timeout=0\" \"php artisan pail --timeout=0\" \"bun run dev\" --names=server,queue,logs,vite --kill-others"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",

View file

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php" colors="true">
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Browser">
<directory>tests/Browser</directory>
@ -36,4 +38,4 @@
<env name="TELESCOPE_ENABLED" value="false" />
<env name="NIGHTWATCH_ENABLED" value="false" />
</php>
</phpunit>
</phpunit>

View file

@ -10,4 +10,9 @@ export default defineConfig({
refresh: true,
}),
],
server: {
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});