mirror of
https://github.com/kuaifan/dootask.git
synced 2026-06-29 02:32:14 +00:00
- docker-compose.yml php 镜像指向 kuaifan/php:8.4-swoole-8.0.rc21 (dockerfile 仓库 phpswoole/8.4.Dockerfile 的 CI 变体产物,本地已构建同名 tag) - firebase/php-jwt ^6.9 → ^7.1:消除 CVE-2025-45769(composer audit 清零); 唯一调用点 FileController JWT::encode(HS256) 实测兼容 (注意:7.x 强制 HMAC 密钥 ≥32 字节,标准 APP_KEY 51 字符无虞) - 新增 UPGRADE-L13-REPORT.md:改动清单、依赖矩阵、验证证据、遗留风险 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
98 lines
2.7 KiB
JSON
98 lines
2.7 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.3",
|
|
"ext-curl": "*",
|
|
"ext-dom": "*",
|
|
"ext-ffi": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-gd": "*",
|
|
"ext-imagick": "*",
|
|
"ext-json": "*",
|
|
"ext-libxml": "*",
|
|
"ext-openssl": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-zip": "*",
|
|
"directorytree/ldaprecord-laravel": "^4.0",
|
|
"firebase/php-jwt": "^7.1",
|
|
"guanguans/notify": "~1.28.0",
|
|
"guzzlehttp/guzzle": "^7.3.0",
|
|
"hedeqiang/umeng": "^2.1",
|
|
"laravel/framework": "^13.0",
|
|
"laravel/tinker": "^3.0",
|
|
"laravolt/avatar": "^6.5",
|
|
"league/commonmark": "^2.5",
|
|
"league/html-to-markdown": "^5.1",
|
|
"maatwebsite/excel": "^3.1.69",
|
|
"matomo/device-detector": "^6.4",
|
|
"mews/captcha": "^3.5",
|
|
"orangehill/iseed": "^3.8",
|
|
"overtrue/pinyin": "^5.3",
|
|
"phpoffice/phppresentation": "^1.2",
|
|
"phpoffice/phpword": "^1.4",
|
|
"predis/predis": "^2.3",
|
|
"smalot/pdfparser": "^2.11",
|
|
"symfony/console": "^7.4"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-ide-helper": "^3.7",
|
|
"fakerphp/faker": "^1.24",
|
|
"hhxsv5/laravel-s": "~3.8.0",
|
|
"kitloong/laravel-migrations-generator": "^7.4",
|
|
"mockery/mockery": "^1.6",
|
|
"nunomaduro/collision": "^8.6",
|
|
"phpunit/phpunit": "^11.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
},
|
|
"files" : [
|
|
"app/Helpers/Function.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"repositories": {
|
|
}
|
|
}
|