composer.json 602 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "topthink/think-throttle",
  3. "description": "throttle middleware for thinkphp6",
  4. "require": {
  5. "php": ">=7.1.0",
  6. "topthink/framework": "^6.0.0"
  7. },
  8. "license": "Apache-2.0",
  9. "authors": [
  10. {
  11. "name": "hongweipeng",
  12. "email": "hongweichen8888@sina.com"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": {
  17. "think\\middleware\\": "src"
  18. }
  19. },
  20. "extra": {
  21. "think":{
  22. "config":{
  23. "throttle": "src/config.php"
  24. }
  25. }
  26. },
  27. "minimum-stability": "dev"
  28. }