forked from j4mie/idiorm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.32 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "featherbb/db-layer",
"type": "library",
"description": "Idiorm-based FeatherBB Database Layer",
"keywords": ["idiorm", "orm", "query builder", "featherbb", "db-layer"],
"homepage": "http://featherbb.org",
"support": {
"issues": "https://github.com/featherbb/db-layer/issues",
"source": "https://github.com/featherbb/db-layer"
},
"authors": [
{
"name": "Jamie Matthews",
"email": "jamie.matthews@gmail.com",
"homepage": "http://j4mie.org",
"role": "Developer"
},
{
"name": "Simon Holywell",
"email": "treffynnon@php.net",
"homepage": "http://simonholywell.com",
"role": "Maintainer"
},
{
"name": "Durham Hale",
"email": "me@durhamhale.com",
"homepage": "http://durhamhale.com",
"role": "Maintainer"
},
{
"name": "adaur",
"email": "adaur.underground@gmail.com",
"homepage": "http://featherbb.org",
"role": "Maintainer"
}
],
"license": [
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-4-Clause"
],
"require": {
"php": ">=5.2.0"
},
"autoload": {
"classmap": ["Database.php"]
}
}