From de8965af9f26f29c168677d82ee62825d6544307 Mon Sep 17 00:00:00 2001 From: Maxime Rault Date: Wed, 25 Sep 2019 10:37:05 +0200 Subject: [PATCH] Laravel 6.0 compatibility --- README.md | 8 ++++---- composer.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1a4d2ad..dc5b659 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ It provides DB2 Connection by extending the Illuminate Database component of the Add laravel-db2 to your composer.json file: ``` "require": { - "cooperl/laravel-db2": "~5.8" + "cooperl/laravel-db2": "^6.0" } ``` -Use [composer](http://getcomposer.org) to install this package. +Use [composer](https://getcomposer.org) to install this package. ``` $ composer update ``` @@ -30,7 +30,7 @@ There are two ways to configure laravel-db2. You can choose the most convenient Please check appropriate specific DSN parameters for your connection. For instance here are the ODBC keywords for IBMi -https://www.ibm.com/support/knowledgecenter/fr/ssw_ibm_i_73/rzaik/connectkeywords.htm +https://www.ibm.com/support/knowledgecenter/fr/ssw_ibm_i_74/rzaik/connectkeywords.htm If you encounter issues with char fields containing characters outside the invariant character set (for example: "ΓΌ") please see : https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014094907 For PHP applications using the UTF8 locale the workaround to prevent the extra garbage data is to set the following connection string keyword: @@ -146,4 +146,4 @@ the same way as above ## Usage -Consult the [Laravel framework documentation](http://laravel.com/docs). +Consult the [Laravel framework documentation](https://laravel.com/docs). diff --git a/composer.json b/composer.json index 716f146..67e39e8 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,8 @@ } ], "require": { - "php": ">=7.1.3", - "illuminate/database": "5.8.*" + "php": "^7.2", + "illuminate/database": "^6.0" }, "require-dev": { },