mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-09 06:51:23 +08:00
91 lines
2.5 KiB
JSON
91 lines
2.5 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"graham-campbell/github": "^12.0",
|
|
"guzzlehttp/guzzle": "^7.4",
|
|
"laravel/framework": "^10.44",
|
|
"laravel/tinker": "^2.8",
|
|
"laravel/ui": "^4.2",
|
|
"laravelcollective/html": "^6.4",
|
|
"nunomaduro/collision": "^6.3",
|
|
"symfony/yaml": "^6.2",
|
|
"ext-json": "*",
|
|
"ext-intl": "*",
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
"spatie/laravel-ignition": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-ide-helper": "^2.13",
|
|
"filp/whoops": "^2.8",
|
|
"mockery/mockery": "^1.4.4",
|
|
"phpunit/phpunit": "^9.5.10",
|
|
"squizlabs/php_codesniffer": "3.*",
|
|
"symfony/thanks": "^1.2",
|
|
"fakerphp/faker": "^1.9.1"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database/seeders",
|
|
"database/factories"
|
|
],
|
|
"files": [
|
|
"app/Helper.php"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"barryvdh/laravel-ide-helper"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate"
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover"
|
|
],
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
|
"@php artisan ide-helper:generate",
|
|
"@php artisan ide-helper:meta",
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true,
|
|
"allow-plugins": {
|
|
"kylekatarnls/update-helper": true,
|
|
"symfony/thanks": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|