Skip to content

Commit

Permalink
Laravel 6.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperl22 committed Sep 25, 2019
1 parent c5aa87d commit de8965a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand All @@ -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:
Expand Down Expand Up @@ -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).
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
}
],
"require": {
"php": ">=7.1.3",
"illuminate/database": "5.8.*"
"php": "^7.2",
"illuminate/database": "^6.0"
},
"require-dev": {
},
Expand Down

0 comments on commit de8965a

Please sign in to comment.