composer.json 567 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "yiovo/tp6-captcha",
  3. "description": "tp6-captcha",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "yiovo",
  8. "email": "developer@yiovo.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1.0",
  13. "ext-mbstring": "*",
  14. "ext-gd": "*",
  15. "topthink/framework": "^6.0.0",
  16. "yiovo/tp6-cache": "^1.0"
  17. },
  18. "homepage": "https://github.com/yiovo/tp6-captcha",
  19. "autoload": {
  20. "psr-4": {
  21. "yiovo\\captcha\\": "src/"
  22. }
  23. },
  24. "extra": {
  25. "think": {
  26. "config": {
  27. "captcha": "src/config.php"
  28. }
  29. }
  30. }
  31. }