composer.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "zendframework/zend-captcha",
  3. "description": "Generate and validate CAPTCHAs using Figlets, images, ReCaptcha, and more",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "captcha"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-captcha/",
  12. "issues": "https://github.com/zendframework/zend-captcha/issues",
  13. "source": "https://github.com/zendframework/zend-captcha",
  14. "rss": "https://github.com/zendframework/zend-captcha/releases.atom",
  15. "chat": "https://zendframework-slack.herokuapp.com",
  16. "forum": "https://discourse.zendframework.com/c/questions/components"
  17. },
  18. "require": {
  19. "php": "^5.6 || ^7.0",
  20. "zendframework/zend-math": "^2.7 || ^3.0",
  21. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  25. "zendframework/zend-coding-standard": "~1.0.0",
  26. "zendframework/zend-session": "^2.8",
  27. "zendframework/zend-text": "^2.6",
  28. "zendframework/zend-validator": "^2.10.1",
  29. "zendframework/zendservice-recaptcha": "^3.0"
  30. },
  31. "suggest": {
  32. "zendframework/zend-i18n-resources": "Translations of captcha messages",
  33. "zendframework/zend-session": "Zend\\Session component",
  34. "zendframework/zend-text": "Zend\\Text component",
  35. "zendframework/zend-validator": "Zend\\Validator component",
  36. "zendframework/zendservice-recaptcha": "ZendService\\ReCaptcha component"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Zend\\Captcha\\": "src/"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "ZendTest\\Captcha\\": "test/"
  46. }
  47. },
  48. "config": {
  49. "sort-packages": true
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "2.8.x-dev",
  54. "dev-develop": "2.9.x-dev"
  55. }
  56. },
  57. "scripts": {
  58. "check": [
  59. "@cs-check",
  60. "@test"
  61. ],
  62. "cs-check": "phpcs",
  63. "cs-fix": "phpcbf",
  64. "test": "phpunit --colors=always",
  65. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  66. }
  67. }