Laravel 6.0 compatibility

This commit is contained in:
Maxime Rault 2019-09-25 10:37:05 +02:00
parent c5aa87d9a3
commit de8965af9f
2 changed files with 6 additions and 6 deletions

View File

@ -17,10 +17,10 @@ It provides DB2 Connection by extending the Illuminate Database component of the
Add laravel-db2 to your composer.json file: Add laravel-db2 to your composer.json file:
``` ```
"require": { "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 $ 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. 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 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 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: 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 ## Usage
Consult the [Laravel framework documentation](http://laravel.com/docs). Consult the [Laravel framework documentation](https://laravel.com/docs).

View File

@ -16,8 +16,8 @@
} }
], ],
"require": { "require": {
"php": ">=7.1.3", "php": "^7.2",
"illuminate/database": "5.8.*" "illuminate/database": "^6.0"
}, },
"require-dev": { "require-dev": {
}, },