composer.json 800 B

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