From e9b3d49669475f5fc32ca2290884b643c8cc9467 Mon Sep 17 00:00:00 2001 From: Max Matteo Staack Date: Wed, 16 Mar 2022 14:14:28 +0100 Subject: [PATCH] bump to php 8 --- .github/workflows/run-tests.yml | 6 ++---- composer.json | 8 ++++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 503ef8f..e5d54bc 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,14 +8,12 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.0, 7.4] - laravel: [8.*, 7.*] + php: [8.1, 8.0] + laravel: [8.*] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 8.* testbench: 6.* - - laravel: 7.* - testbench: 5.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 94909d4..224e2d9 100644 --- a/composer.json +++ b/composer.json @@ -23,15 +23,15 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^8.0", "ext-json": "*", "astrotomic/laravel-guzzle": "^2.1", - "illuminate/cache": "^7.0 || ^8.0 || ^9.0", - "illuminate/support": "^7.0 || ^8.0 || ^9.0" + "illuminate/cache": "^8.0 || ^9.0", + "illuminate/support": "^8.0 || ^9.0" }, "require-dev": { "roave/security-advisories": "dev-latest", - "orchestra/testbench": "^5.0 || ^6.0 || ^7.0", + "orchestra/testbench": "^6.0 || ^7.0", "phpunit/phpunit": "^9.3" }, "config": {