composer.json 757 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "magento/zendframework1",
  3. "description": "Magento Zend Framework 1",
  4. "type": "library",
  5. "keywords": [
  6. "framework",
  7. "zf1"
  8. ],
  9. "homepage": "http://framework.zend.com/",
  10. "license": "BSD-3-Clause",
  11. "require": {
  12. "php": ">=5.2.11"
  13. },
  14. "autoload": {
  15. "psr-0": {
  16. "Zend_": "library/"
  17. }
  18. },
  19. "include-path": [
  20. "library/"
  21. ],
  22. "config": {
  23. "bin-dir": "bin"
  24. },
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "1.12.x-dev"
  28. }
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "3.7.*",
  32. "phpunit/dbunit": "1.3.*"
  33. },
  34. "archive": {
  35. "exclude": ["/demos", "/documentation", "/tests"]
  36. }
  37. }