From 8d8071a5da824a0aaf511936fefdc75d1b8b1471 Mon Sep 17 00:00:00 2001 From: tcampbPPU Date: Tue, 14 Feb 2023 12:22:54 -0500 Subject: [PATCH] Laravel 10 upgrade --- composer.json | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 73662a3..f4511bf 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,10 @@ "description": "Laravel API helpers", "license": "MIT", "keywords": [ - "Laravel", "API", "Pagination", "PHP" + "Laravel", + "API", + "Pagination", + "PHP" ], "homepage": "https://github.com/acidjazz/metapi", "authors": [ @@ -14,11 +17,16 @@ } ], "require": { - "illuminate/support": "7.* || 8.* || 9.*", + "illuminate/support": "9.*|10.*", "jasongrimes/paginator": "^1.0", - "php": "^8.0|^8.1", + "php": "^8.1", "ext-json": "*" }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0", + "phpunit/phpunit": "^9.5|^10.0", + "mockery/mockery": "^1.4.4" + }, "autoload": { "psr-4": { "acidjazz\\metapi\\": "src" @@ -35,10 +43,5 @@ "acidjazz\\metapi\\ServiceProvider" ] } - }, - "require-dev": { - "orchestra/testbench": "^5.2", - "phpunit/phpunit": "^9.5.10", - "mockery/mockery": "^1.3" } }