-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
39 lines (39 loc) · 1.08 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
{
"name": "legow/reconnecting-pdo",
"description": "Description of project reconnecting-pdo.",
"license": "MIT",
"authors": [
{
"name": "Turcsán Ádám",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"ext-pdo": "*"
},
"suggest": {
"ext-pdo_mysql": "For MySQL or MariaDB databases",
"ext-pdo_sqlsrv": "For MSSQL databases on Windows platform",
"ext-pdo_dblib": "For MSSQL or Sybase databases on Linux/UNIX platform",
"ext-pdo_oci": "For Oracle databases",
"ext-pdo_pqsql": "For PostgreSQL databases",
"ext-pdo_sqlite": "For SQLite databases"
},
"autoload": {
"psr-4": {
"LegoW\\ReconnectingPDO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LegoW\\ReconnectingPDO\\Test\\": "test/"
}
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-xml": "*",
"phpunit/phpunit": "^4.7",
"humbug/humbug": "1.0.0-alpha2"
}
}