composer.json 610 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "fastknife/ajcaptcha",
  3. "description": "This is a behavior verification code PHP back-end implementation package",
  4. "type": "library",
  5. "authors": [
  6. {
  7. "name": "bruce",
  8. "email": "2777314125@qq.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1",
  13. "ext-gd": "*",
  14. "ext-openssl": "*",
  15. "intervention/image": "^2.5",
  16. "ext-iconv": "*",
  17. "ext-json": "*"
  18. },
  19. "minimum-stability": "stable",
  20. "license": "GPL-3.0-only",
  21. "autoload": {
  22. "psr-4": {
  23. "Fastknife\\": "src"
  24. }
  25. }
  26. }