Skip to content

Commit 3161182

Browse files
committed
Merge pull request #52 from ingenerator/3.3/feature/4776/composer-package-definition
3.3/feature/4776/composer package definition (refs #4776)
2 parents 0d7fe2f + 2accd85 commit 3161182

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

composer.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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.3"
26+
},
27+
"suggest": {
28+
"ext-mysql": "*",
29+
"ext-pdo": "*"
30+
},
31+
"extra": {
32+
"branch-alias": {
33+
"dev-3.3/dev": "3.3.x-dev",
34+
"dev-3.4/dev": "3.4.x-dev"
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)