composer.json 693 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "thinkcmf/cmf-route",
  3. "description": "thinkcmf6 route",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "liu21st",
  8. "email": "liu21st@gmail.com"
  9. },
  10. {
  11. "name": "catman",
  12. "email": "catman@thinkcmf.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.1.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "think\\": "src"
  21. },
  22. "classmap": [
  23. "src/Route.php",
  24. "src/Http.php",
  25. "src/route/Rule.php",
  26. "src/route/Url.php",
  27. "src/route/dispatch/Controller.php",
  28. "src/route/dispatch/Url.php"
  29. ]
  30. }
  31. }