From 37400b291ce7d5dbaeaedb320d547c676672109f Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Mon, 24 Jan 2022 10:21:20 +0100 Subject: [PATCH 1/2] Readme: added note about mysql only support atm --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index f84ead277..f93766ab7 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,9 @@ This extension provides the following features: * builtin support for `doctrine/dbal`, `mysqli`, and `PDO` * API to built the same features for your custom sql based database access layer +**Note:** +At the moment only mysql/mariadb databases are supported. Technically its not a big problem to support other databases though. + [see the unit-testsuite](https://github.com/staabm/phpstan-dba/tree/main/tests/data) to get a feeling about the current featureset. __Its really early days... and this libs has a few rough edges.__ From 311c93bfad60eb0daa2116ab538ce8a37d9cec2e Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Mon, 24 Jan 2022 10:21:51 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f93766ab7..ee82f5e6c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This extension provides the following features: * API to built the same features for your custom sql based database access layer **Note:** -At the moment only mysql/mariadb databases are supported. Technically its not a big problem to support other databases though. +At the moment only mysql/mariadb databases are supported. Technically it's not a big problem to support other databases though. [see the unit-testsuite](https://github.com/staabm/phpstan-dba/tree/main/tests/data) to get a feeling about the current featureset.