From 746bbd8ae4ec12c6fc93ff00a0c3d496bcb928ec Mon Sep 17 00:00:00 2001 From: "Daniel S. Deboer" Date: Mon, 23 Aug 2021 09:41:41 -0400 Subject: [PATCH] [chore] Upgrade to php 8 --- .gitignore | 1 + README.md | 2 +- composer.json | 10 +++++----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 19d1bc6..b227ba3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /vendor composer.lock +phpunit.xml ## Directory-based project format: .idea/ diff --git a/README.md b/README.md index f0970d6..a197912 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ODBC Driver for Laravel -A simple ODBC driver for Laravel 5.5+. +A simple ODBC driver for Laravel 6.0+. Requires PHP 8. ### Prerequisites diff --git a/composer.json b/composer.json index 7267ca4..596c256 100644 --- a/composer.json +++ b/composer.json @@ -20,13 +20,13 @@ "driver" ], "require": { - "php": ">=7.2.0", + "php": "^8.0", "ext-pdo": "*", - "illuminate/support": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0", - "illuminate/database": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0" + "illuminate/support": "^6.0|^7.0|^8.0", + "illuminate/database": "^6.0|^7.0|^8.0" }, "require-dev": { - "phpunit/phpunit": "^7.0", + "phpunit/phpunit": "^9.3", "vimeo/psalm": "^3.1" }, "autoload": { @@ -54,4 +54,4 @@ "config": { "sort-packages": true } -} \ No newline at end of file +}