mirror of
https://github.com/kuaifan/dootask.git
synced 2026-06-23 15:52:22 +00:00
- phpstan(larastan ^3.10, level 1 + baseline 封存 86 个存量错误),composer stan / stan-baseline - ESLint 9 flat config(vue2-essential,存量违规降 warn,error 基线为 0),npm run lint - CI:.github/workflows/tests.yml(static-checks + phpunit,phpunit 用 kuaifan/php 镜像跑,FFI doo.so 不在仓库) - Claude Code hooks:编辑 app/ 下 PHP 后自动单文件 phpstan,失败回灌 - 检索地图:routes/api-map.md(doc:api-map 生成,325 接口)、docs/events-map.md(events:map)、types/dootask-globals.d.ts($A 207 方法)、npm run check:lang(存量缺失 93 条,CI 暂非阻塞) - CLAUDE.md:版本号更正 Laravel 13/PHP 8.4,新增质量门禁、检索地图、架构增量规则章节 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
101 lines
2.9 KiB
JSON
101 lines
2.9 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",
|
|
"larastan/larastan": "^3.10",
|
|
"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"
|
|
],
|
|
"stan": "phpstan analyse --no-progress --memory-limit=-1",
|
|
"stan-baseline": "phpstan analyse --generate-baseline --memory-limit=-1"
|
|
},
|
|
"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": {
|
|
}
|
|
}
|