Skip to content

Commit

Permalink
Add composer.json to support installing with composer. Fixes #4776
Browse files Browse the repository at this point in the history
  • Loading branch information
acoulton committed Aug 19, 2013
1 parent e103618 commit 69857b3
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "kohana/image",
"type": "kohana-module",
"description": "The official Kohana module for manipulating images",
"homepage": "http://kohanaframework.org",
"license": "BSD-3-Clause",
"keywords": ["kohana", "framework", "image"],
"authors": [
{
"name": "Kohana Team",
"email": "[email protected]",
"homepage": "http://kohanaframework.org/team",
"role": "developer"
}
],
"support": {
"issues": "http://dev.kohanaframework.org",
"forum": "http://forum.kohanaframework.org",
"irc": "irc://irc.freenode.net/kohana",
"source": "http://github.com/kohana/core"
},
"require": {
"composer/installers": "~1.0",
"kohana/core": ">=3.3",
"php": ">=5.3.3"
},
"suggest": {
"ext-gd": "*"
},
"extra": {
"branch-alias": {
"dev-3.3/dev": "3.3.x-dev",
"dev-3.4/dev": "3.4.x-dev"
}
}
}

0 comments on commit 69857b3

Please sign in to comment.