mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
88 lines
2.6 KiB
JSON
88 lines
2.6 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The skeleton application for the Laravel framework.",
|
|
"keywords": ["laravel", "framework"],
|
|
"license": "MIT",
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "../..",
|
|
"options": {
|
|
"symlink": true
|
|
}
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"inertiajs/inertia-laravel": "^2.0.1",
|
|
"laravel/framework": "^11.43.2",
|
|
"laravel/tinker": "^2.10.1",
|
|
"livewire/livewire": "^3.5.20",
|
|
"php-flasher/php-flasher": "@dev",
|
|
"spatie/laravel-csp": "^2.10.3",
|
|
"spatie/laravel-ray": "^1.39.1"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.15",
|
|
"fakerphp/faker": "^1.24.1",
|
|
"larastan/larastan": "^3.1",
|
|
"laravel/pint": "^1.21",
|
|
"laravel/sail": "^1.41",
|
|
"mockery/mockery": "^1.6.12",
|
|
"nunomaduro/collision": "^8.6.1",
|
|
"pestphp/pest": "^3.7.4",
|
|
"pestphp/pest-plugin-laravel": "^3.1",
|
|
"spatie/laravel-ignition": "^2.9.1",
|
|
"spatie/ray": "^1.41.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi",
|
|
"@php artisan flasher:install --symlink"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
|
|
"@php artisan flasher:install --symlink"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
|
"@php artisan flasher:install --symlink"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi",
|
|
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
|
"@php artisan migrate --graceful --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
|
|
}
|