composer.json 575 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "zendframework/zendframework1",
  3. "description": "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. }