Remove the adapter dependency, middleware, configuration, and frontend route. Leave the backend root unclaimed so the standalone Vue application remains independent.
104 lines
2.9 KiB
JSON
104 lines
2.9 KiB
JSON
{
|
|
"$schema": "https://getcomposer.org/schema.json",
|
|
"name": "laravel/blank-vue-starter-kit",
|
|
"type": "project",
|
|
"description": "The skeleton application for the Laravel framework.",
|
|
"keywords": [
|
|
"laravel",
|
|
"framework"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.3",
|
|
"laravel/framework": "^13.17",
|
|
"laravel/tinker": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"larastan/larastan": "^3.9",
|
|
"laravel/pail": "^1.2.5",
|
|
"laravel/pao": "^1.0.6",
|
|
"mockery/mockery": "^1.6",
|
|
"nunomaduro/collision": "^8.9.3",
|
|
"phpunit/phpunit": "^12.5.23"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"setup": [
|
|
"composer install",
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
|
"@php artisan key:generate",
|
|
"@php artisan migrate --force",
|
|
"npm install",
|
|
"npm run build"
|
|
],
|
|
"dev": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"@php artisan dev"
|
|
],
|
|
"lint": [
|
|
"pint --parallel"
|
|
],
|
|
"lint:check": [
|
|
"pint --parallel --test"
|
|
],
|
|
"ci:check": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"npm run lint:check",
|
|
"npm run format:check",
|
|
"npm run types:check",
|
|
"@test"
|
|
],
|
|
"types:check": [
|
|
"phpstan analyse"
|
|
],
|
|
"test": [
|
|
"@php artisan config:clear --ansi",
|
|
"@lint:check",
|
|
"@types:check",
|
|
"@php artisan test"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi",
|
|
"@php artisan migrate --graceful --ansi"
|
|
],
|
|
"pre-package-uninstall": [
|
|
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
|
|
]
|
|
},
|
|
"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"
|
|
}
|