composer.json 809 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "webman/captcha",
  3. "type": "library",
  4. "description": "Captcha generator",
  5. "keywords": ["captcha", "spam", "bot"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "walkor",
  10. "email": "walkor@workerman.net"
  11. },
  12. {
  13. "name": "Grégoire Passault",
  14. "email": "g.passault@gmail.com",
  15. "homepage": "http://www.gregwar.com/"
  16. },
  17. {
  18. "name": "Jeremy Livingston",
  19. "email": "jeremy.j.livingston@gmail.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.6.0",
  24. "ext-gd": "*",
  25. "ext-mbstring": "*"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Webman\\Captcha\\": "src"
  30. }
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^6.4"
  34. }
  35. }