composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "_readme": "NOTE: see readme for COMPOSER_ROOT_VERSION instructions if you have dependency issues",
  3. "name": "kohana/core",
  4. "description": "Core system classes for the Kohana application framework",
  5. "homepage": "http://kohanaframework.org",
  6. "license": "BSD-3-Clause",
  7. "keywords": ["kohana", "framework"],
  8. "authors": [
  9. {
  10. "name": "Kohana Team",
  11. "email": "team@kohanaframework.org",
  12. "homepage": "http://kohanaframework.org/team",
  13. "role": "developer"
  14. }
  15. ],
  16. "support": {
  17. "issues": "http://dev.kohanaframework.org",
  18. "forum": "http://forum.kohanaframework.org",
  19. "irc": "irc://irc.freenode.net/kohana",
  20. "source": "http://github.com/kohana/core"
  21. },
  22. "require": {
  23. "php": ">=5.3.3"
  24. },
  25. "require-dev": {
  26. "kohana/unittest": "3.3.*@dev",
  27. "kohana/koharness": "*@dev"
  28. },
  29. "suggest": {
  30. "ext-http": "*",
  31. "ext-curl": "*",
  32. "ext-mcrypt": "*"
  33. },
  34. "extra": {
  35. "installer-paths": {
  36. "vendor/{$vendor}/{$name}": ["type:kohana-module"]
  37. },
  38. "branch-alias": {
  39. "dev-3.3/develop": "3.3.x-dev",
  40. "dev-3.4/develop": "3.4.x-dev"
  41. }
  42. }
  43. }