Documented how to use mssql with the docker image

This commit is contained in:
Alejandro Celaya
2020-02-14 19:27:21 +01:00
parent 27fd9c5988
commit 2bb2c2cde3
2 changed files with 8 additions and 4 deletions

View File

@@ -16,11 +16,13 @@ $helper = new class {
'mysql' => 'pdo_mysql',
'maria' => 'pdo_mysql',
'postgres' => 'pdo_pgsql',
'mssql' => 'pdo_sqlsrv',
];
private const DB_PORTS_MAP = [
'mysql' => '3306',
'maria' => '3306',
'postgres' => '5432',
'mssql' => '1433',
];
public function getDbConfig(): array