routes/composer.json
yeyixianyang c609f2d4e0 chore(deps): 放宽 symfony/console 版本限制
- 允许使用 ^7.0 或 ^8.0 版本的 symfony/console
- 保持与其他依赖的兼容性
- 更新版本约束以支持更多环境配置
2025-12-07 11:07:35 +08:00

44 lines
1.0 KiB
JSON

{
"name": "jltx/routes",
"description": "采用注解形式的路由系统,以避免在大型项目中维护大静态路由表",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "hui",
"email": "yeyixianyang@163.com"
}
],
"autoload": {
"psr-4": {
"Jltx\\Routes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jltx\\Routes\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.4",
"illuminate/contracts": "^12.0",
"illuminate/support": "^12.41",
"symfony/console": "^7.0|^8.0"
},
"require-dev": {
"laravel/pint": "^1.26",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"lint": "vendor/bin/pint",
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Jltx\\Routes\\Providers\\RouteServiceProvider"
]
}
}
}