From 759b70cb98203939af04180d456b7e9cc2ed2cb9 Mon Sep 17 00:00:00 2001 From: Namoshek Date: Wed, 10 Apr 2024 17:16:50 +0200 Subject: [PATCH] Update supported PHP and Laravel versions (#57) * Remove PHP 7.4 and EOL Laravel versions * Build against PHP 8.3 --- .github/workflows/tests.yml | 4 ++-- composer.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bf365ea..92dff2f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,9 +15,9 @@ jobs: strategy: matrix: - php-version: ['7.4', '8.0', '8.1', '8.2'] + php-version: ['8.0', '8.1', '8.2', '8.3'] include: - - php-version: '8.2' + - php-version: '8.3' run-sonarqube-analysis: true steps: diff --git a/composer.json b/composer.json index 6b90eb8..acb1a84 100644 --- a/composer.json +++ b/composer.json @@ -19,9 +19,9 @@ } ], "require": { - "php": "^7.4|^8.0", - "illuminate/config": "^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0", + "php": "^8.0", + "illuminate/config": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", "php-mqtt/client": "^1.3.0|^2.0" }, "require-dev": {