routes/composer.json

44 lines
1.0 KiB
JSON
Raw Normal View History

{
"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": "^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"
]
}
}
}