Skip to content

Commit 4c8f982

Browse files
committed
Merge pull request #18 from ingenerator/3.3/feature/4776/composer-package-definition
Add composer.json to support installing with composer. refs #4776
2 parents 74f2995 + 063f240 commit 4c8f982

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

composer.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "kohana/auth",
3+
"type": "kohana-module",
4+
"description": "The official Kohana auth module",
5+
"homepage": "http://kohanaframework.org",
6+
"license": "BSD-3-Clause",
7+
"keywords": ["kohana", "framework", "authentication"],
8+
"authors": [
9+
{
10+
"name": "Kohana Team",
11+
"email": "[email protected]",
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+
"extra": {
28+
"branch-alias": {
29+
"dev-3.3/dev": "3.3.x-dev",
30+
"dev-3.4/dev": "3.4.x-dev"
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)