Skip to content

Commit dc5c5cf

Browse files
Add composer support
1 parent efd55a8 commit dc5c5cf

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "ironbound/db",
3+
"description": "Provides models and custom query objects for custom database tables in WordPress.",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Iron Bound Designs",
9+
"email": "info@ironbounddesigns.com"
10+
}
11+
],
12+
"require": {
13+
"php" : ">=5.3.0",
14+
"ironbound/cache": "1.*"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"IronBound\\DB\\": "src/"
19+
}
20+
}
21+
}

composer.lock

Lines changed: 49 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)