-
Notifications
You must be signed in to change notification settings - Fork 100
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "aura/sql",
"type": "library",
"description": "A PDO extension that provides lazy connections, array 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": "MIT",
"authors": [
{
"name": "Aura.Sql Contributors",
"homepage": "https://github.com/auraphp/Aura.Sql/contributors"
}
],
"require": {
"php": ">=8.1",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"Aura\\Sql\\": "src/"
}
},
"require-dev": {
"pds/skeleton": "~1.0",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Aura\\Sql\\": "tests/"
}
}
}