From 9ec3c9cce9f533b8d8a9cfca26c00848da2b8495 Mon Sep 17 00:00:00 2001 From: larowka Date: Tue, 28 Mar 2023 18:11:30 +0500 Subject: [PATCH] Support php 8.1 and laravel 10 --- .gitignore | 1 + composer.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index b56fa873..f981e7ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Files .DS_Store phpunit.xml +.phpunit.result.cache composer.lock .scannerwork diff --git a/composer.json b/composer.json index 97a0a33e..cbfc1c3f 100644 --- a/composer.json +++ b/composer.json @@ -21,17 +21,17 @@ } ], "require": { - "php": "^7.2|^8.0", - "illuminate/console": "~5.4|~6.0|~7.0|~8.0|~9.0", - "illuminate/contracts": "~5.4|~6.0|~7.0|~8.0|~9.0", - "illuminate/http": "~5.4|~6.0|~7.0|~8.0|~9.0", - "illuminate/support": "~5.4|~6.0|~7.0|~8.0|~9.0", + "php": "^7.2|^8.0|^8.1", + "illuminate/console": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0", + "illuminate/contracts": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0", + "illuminate/http": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0", + "illuminate/support": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0", "predis/predis": "^1.1" }, "require-dev": { - "laravel/lumen-framework": "~5.4|~6.0|~7.0|~8.0|~9.0", - "phpunit/phpunit": "^9", - "phpunit/php-code-coverage": "^9", + "laravel/lumen-framework": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0", + "phpunit/phpunit": "^10", + "phpunit/php-code-coverage": "^10", "php-coveralls/php-coveralls": "^2.1", "mockery/mockery": "~1.5", "codedungeon/phpunit-result-printer": "^0.31.0",