composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "zendframework/zend-text",
  3. "description": "Create FIGlets and text-based tables",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "zf",
  7. "zendframework",
  8. "text"
  9. ],
  10. "support": {
  11. "docs": "https://docs.zendframework.com/zend-text/",
  12. "issues": "https://github.com/zendframework/zend-text/issues",
  13. "source": "https://github.com/zendframework/zend-text",
  14. "rss": "https://github.com/zendframework/zend-text/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-servicemanager": "^2.7.5 || ^3.0.3",
  21. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
  25. "zendframework/zend-coding-standard": "~1.0.0",
  26. "zendframework/zend-config": "^2.6"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Zend\\Text\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "files": [
  35. "test/autoload.php"
  36. ],
  37. "psr-4": {
  38. "ZendTest\\Text\\": "test/"
  39. }
  40. },
  41. "config": {
  42. "sort-packages": true
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "2.7.x-dev",
  47. "dev-develop": "2.8.x-dev"
  48. }
  49. },
  50. "scripts": {
  51. "check": [
  52. "@cs-check",
  53. "@test"
  54. ],
  55. "cs-check": "phpcs",
  56. "cs-fix": "phpcbf",
  57. "test": "phpunit --colors=always",
  58. "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
  59. }
  60. }