From 50ff5c9a932216e57e67e14ca9d840645b3ff99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Dalmolin?= Date: Tue, 28 Mar 2023 10:07:45 -0300 Subject: [PATCH] Laravel 10 support --- .github/workflows/ci.yml | 18 ++++++++++++++++-- README.md | 2 +- composer.json | 6 +++--- 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 594c7da..8371f5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,16 +9,30 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, 8.0, 8.1] - laravel: [6.*, 7.*, 8.*, 9.*] + php: [7.4, 8.0, 8.1, 8.2] + laravel: [6.*, 7.*, 8.*, 9.*, 10.*] exclude: - php: 7.4 laravel: 9.* + - php: 7.4 + laravel: 10.* + - php: 8.0 + laravel: 10.* - php: 8.1 laravel: 6.* - php: 8.1 laravel: 7.* + - php: 8.2 + laravel: 6.* + - php: 8.2 + laravel: 7.* + - php: 8.2 + laravel: 8.* + - php: 8.2 + laravel: 9.* include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* - laravel: 8.* diff --git a/README.md b/README.md index 3ec1fe7..2d53eaf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Laravel Preflight Checks -![Laravel Supported Versions](https://img.shields.io/badge/laravel-6.x/7.x/8.x/9.x-green.svg) +![Laravel Supported Versions](https://img.shields.io/badge/laravel-6.x/7.x/8.x/9.x/10.x-green.svg) [![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md) Performs pre-flight checks to ensure configuration and setup for deployment or development. diff --git a/composer.json b/composer.json index 7f1dc86..a0d216a 100644 --- a/composer.json +++ b/composer.json @@ -16,14 +16,14 @@ ], "require": { "php": "^7.4|^8.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", - "illuminate/pipeline": "^6.0|^7.0|^8.0|^9.0" + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/pipeline": "^6.0|^7.0|^8.0|^9.0|^10.0" }, "require-dev": { "doctrine/dbal": "^2.0", "fakerphp/faker": "^1.9.1", "mockery/mockery": "^1.3.1", - "orchestra/testbench": "4.*|5.*|6.*|7.*", + "orchestra/testbench": "4.*|5.*|6.*|7.*|8.*", "phpunit/phpunit": "^9.0" }, "autoload": {