From 18d0eec6111dcf1b7f0742b558746ee5cab67265 Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Wed, 9 Feb 2022 21:40:44 +0000 Subject: [PATCH] Add PHP 7.3 Support (#6) --- .github/workflows/tests.yml | 4 +++- composer.json | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f88f35b..84164ec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,9 +13,11 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, 8.0, 8.1] + php: [7.3, 7.4, 8.0, 8.1] laravel: [6.0, 7.0, 8.0, 9.0] exclude: + - php: 7.3 + laravel: 9 - php: 7.4 laravel: 9 diff --git a/composer.json b/composer.json index 6909f13..e424432 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,8 @@ } ], "require": { - "php": "^7.4|^8.0", + + "php": "^7.3|^8.0", "illuminate/support": "^6.0|^7.0|^8.0|^9.0", "joelbutcher/facebook-graph-sdk": "^6.0.0", "symfony/http-client": "^5.3"