| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- {
- "name": "laravel/laravel",
- "type": "project",
- "description": "The skeleton application for the Laravel framework.",
- "keywords": [
- "laravel",
- "framework"
- ],
- "license": "MIT",
- "require": {
- "php": "8.3.*",
- "ext-bcmath": "*",
- "ext-gmp": "*",
- "ext-mbstring": "*",
- "ext-pdo": "*",
- "ext-redis": "*",
- "ext-openssl": "*",
- "dcat/laravel-admin": "2.0.x-dev",
- "google/protobuf": "^3.25",
- "guzzlehttp/guzzle": "^7.9",
- "iidestiny/laravel-filesystem-oss": "^3.7",
- "inhere/php-validate": "^3.0",
- "intervention/image": "^3.11",
- "laravel/framework": "^11.31",
- "laravel/tinker": "^2.9",
- "league/oauth2-server": "^9.2",
- "lodash-php/lodash-php": "^0.1.0",
- "netresearch/jsonmapper": "^5.0",
- "overtrue/easy-sms": "*",
- "pragmarx/google2fa": "^8.0",
- "solution9th/laravel-file-cache-gc": "^0.0.2",
- "spatie/laravel-route-attributes": "^1.25",
- "symfony/cache": "^7.2"
- },
- "require-dev": {
- "fakerphp/faker": "^1.23",
- "laravel/pail": "^1.1",
- "laravel/pint": "^1.13",
- "laravel/sail": "^1.26",
- "mockery/mockery": "^1.6",
- "nunomaduro/collision": "^8.1",
- "phpunit/phpunit": "^11.0.1"
- },
- "autoload": {
- "psr-4": {
- "App\\": "app/",
- "Database\\Factories\\": "database/factories/",
- "Database\\Seeders\\": "database/seeders/",
- "GPBMetadata\\": "protophp/GPBMetadata/",
- "Uraus\\": "protophp/Uraus/",
- "UCore\\": "UCore/",
- "ThirdParty\\":"ThirdParty/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Tests\\": "tests/"
- }
- },
- "scripts": {
- "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 -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
- "@php artisan migrate --graceful --ansi"
- ],
- "dev": [
- "Composer\\Config::disableProcessTimeout",
- "npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
- ],
- "router_cache": [
- "php artisan route:cache"
- ],
- "updatecall": [
- "php artisan cache:clear",
- "php artisan route:cache"
- ],
- "demo1": [
- "php artisan transaction:status50to202"
- ],
- "dbgen": [
- "php artisan ucore:generate-model-annotation"
- ],
- "proto": [
- "rm -rf protophp/GPBMetadata/* protophp/Uraus/*",
- "protoc --php_out=protophp proto/game.proto",
- "php artisan proto:route --force"
- ],
- "jsonconfig": [
- "php artisan gameitems:generate-json",
- "php artisan gameitems:generate-chest-json"
- ]
- },
- "extra": {
- "laravel": {
- "dont-discover": [
- "laravel/framework/src/Illuminate/Database/MigrationServiceProvider"
- ]
- }
- },
- "config": {
- "optimize-autoloader": true,
- "preferred-install": "dist",
- "sort-packages": true,
- "allow-plugins": {
- "pestphp/pest-plugin": true,
- "php-http/discovery": true
- },
- "repos": {
- "packagist": {
- "type": "composer",
- "url": "https://repo.packagist.org"
- }
- }
- },
- "minimum-stability": "beta",
- "prefer-stable": true
- }
|