From d237909b6dc00b0c7ce72b1b6e3c7815679b3ec9 Mon Sep 17 00:00:00 2001 From: Namoshek Date: Thu, 10 Feb 2022 19:22:40 +0100 Subject: [PATCH] Feature laravel 9 (#22) * Support Laravel 9 * Build and test using PHP 8.1 --- .github/workflows/tests.yml | 4 ++-- composer.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 407c488..6e769c9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - php-version: ['7.4', '8.0'] + php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 @@ -55,7 +55,7 @@ jobs: - name: Run SonarQube analysis uses: sonarsource/sonarcloud-github-action@master - if: matrix.php-version == '8.0' + if: matrix.php-version == '8.1' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} diff --git a/composer.json b/composer.json index 7cffdae..97a9a9b 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ ], "require": { "php": "^7.4|^8.0", - "illuminate/config": "~7.0|~8.0", - "illuminate/support": "~7.0|~8.0", + "illuminate/config": "~7.0|~8.0|~9.0", + "illuminate/support": "~7.0|~8.0|~9.0", "php-mqtt/client": "^1.0" }, "require-dev": {