12345678910111213141516171819202122232425262728293031 |
- {
- "name": "thinkcmf/cmf-route",
- "description": "thinkcmf6 route",
- "license": "Apache-2.0",
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- },
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "require": {
- "php": ">=7.1.0"
- },
- "autoload": {
- "psr-4": {
- "think\\": "src"
- },
- "classmap": [
- "src/Route.php",
- "src/Http.php",
- "src/route/Rule.php",
- "src/route/Url.php",
- "src/route/dispatch/Controller.php",
- "src/route/dispatch/Url.php"
- ]
- }
- }
|