From fe01b00cc8274ffd1e1dc3a107b3ead7d189fb3e Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 19 Aug 2022 16:33:18 +0200 Subject: [PATCH] [7.x] Drop old PHP and Laravel versions (#993) * Drop old PHP and Laravel versions * wip --- .github/workflows/tests.yml | 15 +++------------ composer.json | 16 ++++++++-------- 2 files changed, 11 insertions(+), 20 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2944d4b57..319f84591 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,18 +13,9 @@ jobs: strategy: fail-fast: true matrix: - php: [7.3, 7.4, '8.0', 8.1] - laravel: [8, 9] - phpunit: [9, 10] - exclude: - - php: 7.3 - phpunit: 10 - - php: 7.3 - laravel: 9 - - php: 7.4 - laravel: 9 - - php: 7.4 - phpunit: 10 + php: ['8.0', 8.1] + laravel: [9] + phpunit: [9] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - PHPUnit ${{ matrix.phpunit }} diff --git a/composer.json b/composer.json index 52203a6c9..08c88ae41 100644 --- a/composer.json +++ b/composer.json @@ -10,22 +10,22 @@ } ], "require": { - "php": "^7.3|^8.0", + "php": "^8.0", "ext-json": "*", "ext-zip": "*", "php-webdriver/webdriver": "^1.9.0", "nesbot/carbon": "^2.0", - "illuminate/console": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0", - "symfony/console": "^5.1.4|^6.0", - "symfony/finder": "^5.1.4|^6.0", - "symfony/process": "^5.1.4|^6.0", + "illuminate/console": "^9.0", + "illuminate/support": "^9.0", + "symfony/console": "^6.0", + "symfony/finder": "^6.0", + "symfony/process": "^6.0", "vlucas/phpdotenv": "^5.2" }, "require-dev": { "mockery/mockery": "^1.4.2", - "phpunit/phpunit": "^9.0|^10.0", - "orchestra/testbench": "^6.12.1|^7.0|dev-phpunit10" + "phpunit/phpunit": "^9.0", + "orchestra/testbench": "^7.0" }, "suggest": { "ext-pcntl": "Used to gracefully terminate Dusk when tests are running."