composer.json 686 B

1234567891011121314151617181920212223242526272829303132
  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. "config":{
  28. "captcha": "src/config.php"
  29. }
  30. }
  31. }
  32. }