From fed6ccfc27062ba4c3a19ac1a3f474fdd38db1e6 Mon Sep 17 00:00:00 2001 From: Maxime Rault Date: Fri, 25 Sep 2020 14:36:56 +0200 Subject: [PATCH] Laravel 8.0 compatibility --- README.md | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 709b25f..b3a67ba 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": "^7.0" + "cooperl/laravel-db2": "^8.0" } ``` Use [composer](https://getcomposer.org) to install this package. diff --git a/composer.json b/composer.json index 7368622..385c8a3 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,8 @@ } ], "require": { - "php": "^7.2", - "illuminate/database": "^6.0" + "php": "^7.3", + "illuminate/database": "^8.0" }, "require-dev": { },