From ad191bbbe0a29894f67a491fe84fe73e460221a7 Mon Sep 17 00:00:00 2001 From: Maxime Rault Date: Wed, 14 Feb 2018 15:49:26 +0100 Subject: [PATCH] Laravel 5.6 compatibility --- README.md | 6 +++--- composer.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5c16a00..f0b1a21 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ 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.4" + "cooperl/laravel-db2": "~5.6" } ``` Use [composer](http://getcomposer.org) to install this package. @@ -29,7 +29,7 @@ $ composer update There are two ways to configure laravel-db2. You can choose the most convenient way for you. You can put your DB2 credentials into ``app/config/database.php`` (option 1) file or use package config file which you can generate through command line by artisan (option 2). Please check appropriate specific DSN parameters for your connection. -For instance here are the ODBC keywords for IBMi +For instance here are the ODBC keywords for IBMi https://www.ibm.com/support/knowledgecenter/fr/ssw_ibm_i_73/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 @@ -123,7 +123,7 @@ Simply add this code at the end of your ``app/config/database.php`` file: ] ], -``` +``` driver setting can be: - 'db2_ibmi_odbc' for IBMi ODBC connection - 'db2_ibmi_ibm' for IBMi PDO_IBM connection diff --git a/composer.json b/composer.json index 1949148..8369dfe 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,8 @@ } ], "require": { - "php": ">=7.0.0", - "laravel/framework": "5.5.*" + "php": ">=7.1.3", + "laravel/framework": "5.6.*" }, "require-dev": { },