composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "kohana/image",
  3. "type": "kohana-module",
  4. "description": "The official Kohana module for manipulating images",
  5. "homepage": "http://kohanaframework.org",
  6. "license": "BSD-3-Clause",
  7. "keywords": ["kohana", "framework", "image"],
  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.3"
  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-gd": "*"
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-3.3/develop": "3.3.x-dev",
  38. "dev-3.4/develop": "3.4.x-dev"
  39. },
  40. "installer-paths": {
  41. "vendor/{$vendor}/{$name}": ["type:kohana-module"]
  42. }
  43. }
  44. }