From e195d0905711f6cc73629f1707aad3b7fd102eba Mon Sep 17 00:00:00 2001 From: andrehanke Date: Tue, 28 Oct 2025 10:01:28 -0300 Subject: [PATCH 1/2] fix: typo in database charset property --- src/Database/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Connection.php b/src/Database/Connection.php index 58dd798..39db514 100644 --- a/src/Database/Connection.php +++ b/src/Database/Connection.php @@ -83,7 +83,7 @@ public function configureExtraSettings($config = []) throw new \Exception('When application encoding is configured, you need to set up application_charset and database_charset'); } $this->applicationCharset = $config['application_charset']; - $this->databaseCharset = $config['charset']; + $this->databaseCharset = $config['database_charset']; } } From bd7a4847a876d9a541fcc393804bf64a044bb785 Mon Sep 17 00:00:00 2001 From: andrehanke Date: Tue, 28 Oct 2025 10:16:44 -0300 Subject: [PATCH 2/2] fix: acertado arquivo de dependencias --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index e77e11f..67115de 100644 --- a/composer.json +++ b/composer.json @@ -20,10 +20,10 @@ "wiki": "https://github.com/uepg/laravel-sybase/wiki" }, "require": { - "php": "^5.6.4 || ^7.0 || ^8.0", + "php": ">=5.5.9 <7.4", "doctrine/dbal": "^2.5", - "illuminate/database": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|9.*", - "illuminate/support": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|9.*" + "illuminate/database": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*", + "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*" }, "extra": { "laravel": {