composer.json 624 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "topthink/think-captcha",
  3. "description": "captcha package for thinkphp",
  4. "authors": [
  5. {
  6. "name": "yunwuxin",
  7. "email": "448901948@qq.com"
  8. }
  9. ],
  10. "license": "Apache-2.0",
  11. "require": {
  12. "topthink/framework": "^6.0.0"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "think\\captcha\\": "src/"
  17. },
  18. "files": [
  19. "src/helper.php"
  20. ]
  21. },
  22. "extra": {
  23. "think": {
  24. "services": [
  25. "think\\captcha\\CaptchaService"
  26. ]
  27. }
  28. },
  29. "minimum-stability": "dev"
  30. }