forked from auraphp/Aura.Sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1004 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
32
33
34
35
36
37
{
"name": "aura/sql",
"type": "library",
"description": "A PDO extension that provides lazy connections, array quoting, identifier quoting, query profiling, value binding, and convenience methods for common fetch styles. Because it extends PDO, existing code that uses PDO can use this without any changes to the existing code.",
"keywords": [
"mysql",
"pdo",
"pgsql",
"postgres",
"postgresql",
"sqlite",
"sql server",
"sqlserver",
"sqlsrv"
],
"homepage": "https://github.com/auraphp/Aura.Sql",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Sql Contributors",
"homepage": "https://github.com/auraphp/Aura.Sql/contributors"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Aura\\Sql\\": "src/"
}
},
"extra": {
"aura": {
"type": "library"
}
}
}