From 1f7c5d61c63e9e43072d3900f25cb4a66ad31fed Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 6 Jan 2023 16:53:22 +0100 Subject: [PATCH] [6.x] Laravel v10 Support (#166) * Update composer.json * Update tests.yml --- .github/workflows/tests.yml | 10 +++++++++- composer.json | 12 ++++++------ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f1aea87..82bf658 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,16 +17,24 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2] - laravel: [7, 8, 9] + laravel: [7, 8, 9, 10] exclude: - php: 7.2 laravel: 8 - php: 7.2 laravel: 9 + - php: 7.2 + laravel: 10 - php: 7.3 laravel: 9 + - php: 7.3 + laravel: 10 - php: 7.4 laravel: 9 + - php: 7.4 + laravel: 10 + - php: '8.0' + laravel: 10 - php: 8.1 laravel: 7 - php: 8.2 diff --git a/composer.json b/composer.json index 84fc524..3cee35c 100644 --- a/composer.json +++ b/composer.json @@ -13,11 +13,11 @@ "php": "^7.2|^8.0", "ext-dom": "*", "ext-json": "*", - "illuminate/contracts": "^7.0|^8.0|^9.0", - "illuminate/database": "^7.0|^8.0|^9.0", - "illuminate/http": "^7.0|^8.0|^9.0", - "illuminate/support": "^7.0|^8.0|^9.0", - "illuminate/testing": "^7.0|^8.0|^9.0", + "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0", + "illuminate/database": "^7.0|^8.0|^9.0|^10.0", + "illuminate/http": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "illuminate/testing": "^7.0|^8.0|^9.0|^10.0", "mockery/mockery": "^1.0", "phpunit/phpunit": "^8.5|^9.0", "symfony/console": "^5.0|^6.0", @@ -27,7 +27,7 @@ "symfony/http-kernel": "^5.0|^6.0" }, "require-dev": { - "laravel/framework": "^7.0|^8.0|^9.0" + "laravel/framework": "^7.0|^8.0|^9.0|^10.0" }, "autoload": { "psr-4": {