forked from jstayton/Miner
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 721 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "jstayton/miner",
"type": "library",
"description": "A dead simple PHP class for building SQL statements. No manual string concatenation necessary.",
"keywords": ["sql", "sequel", "mysql", "postgresql", "sqlite", "statement", "statements", "query", "queries",
"querybuilder", "pdo", "crud", "insert", "select", "update", "delete"],
"homepage": "https://github.com/jstayton/Miner",
"license": "MIT",
"authors": [
{
"name": "Justin Stayton",
"homepage": "http://justinstayton.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.1.0"
},
"autoload": {
"classmap": ["src/"]
}
}