Add composer.json to support installing with composer. Fixes #4776
[kohana-image.git] / composer.json
blob514820e1fbb5bf7887d2e86b6a76202be42ae277
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         "suggest": {
28                 "ext-gd":   "*"
29         },
30         "extra": {
31                 "branch-alias": {
32                         "dev-3.3/dev":  "3.3.x-dev",
33                         "dev-3.4/dev":  "3.4.x-dev"
34                 }
35         }