composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "kohana/database",
  3. "type": "kohana-module",
  4. "description": "The official Kohana module for database interactions, building queries, and prepared statements",
  5. "homepage": "http://kohanaframework.org",
  6. "license": "BSD-3-Clause",
  7. "keywords": ["kohana", "framework", "database"],
  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. "composer/installers": "~1.0",
  24. "kohana/core": ">=3.3",
  25. "php": ">=5.3.6"
  26. },
  27. "require-dev": {
  28. "kohana/core": "3.3.*@dev",
  29. "kohana/unittest": "3.3.*@dev",
  30. "kohana/koharness": "*@dev"
  31. },
  32. "suggest": {
  33. "ext-mysql": "*",
  34. "ext-pdo": "*"
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-3.3/develop": "3.3.x-dev",
  39. "dev-3.4/develop": "3.4.x-dev"
  40. },
  41. "installer-paths": {
  42. "vendor/{$vendor}/{$name}": ["type:kohana-module"]
  43. }
  44. }
  45. }