-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
31 lines (31 loc) · 949 Bytes
/
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
{
"name": "mikehenrty/thin-pdo-wrapper",
"description": "A simple database abstraction for using PDO with MySQL, Postgres, and SQLite.",
"keywords": ["PDO", "MySQL", "Postgres", "SQLite", "database", "db", "thin", "wrapper"],
"homepage": "https://github.com/mikehenrty/thin-pdo-wrapper",
"license": "MIT",
"authors": [
{
"name": "Michael Henretty",
"email": "[email protected]",
"homepage": "http://github.com/mikehenrty",
"role": "developer"
},
{
"name": "eman1986",
"homepage": "http://github.com/eman1986",
"role": "developer"
},
{
"name": "tohirsolomons",
"homepage": "http://github.com/tohirsolomons",
"role": "developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"files": ["src/PDOWrapper.php"]
}
}