From 2fd47a7fcd5adcffc87cba484dc6a7ef153b20e2 Mon Sep 17 00:00:00 2001 From: David Carr Date: Sun, 12 May 2024 10:34:42 +0100 Subject: [PATCH 1/3] dropped support for older versions --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 8e4a12e..58a22f5 100755 --- a/composer.json +++ b/composer.json @@ -19,9 +19,9 @@ "Microsoft365" ], "require": { - "illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x|6.x|7.x|8.x|9.x|^10.0|^11.0", - "league/oauth2-client": "^1.4|^2", - "guzzlehttp/guzzle": "6.x|7.x", + "illuminate/support": "^10.0|^11.0", + "league/oauth2-client": "^2", + "guzzlehttp/guzzle": "7.x", "ext-json": "*", "ext-fileinfo": "*", "ext-curl": "*", @@ -29,12 +29,12 @@ "microsoft/microsoft-graph": "^1.110" }, "require-dev": { - "orchestra/testbench": "8.0", - "pestphp/pest": "^v1.0|^v2.34", - "pestphp/pest-plugin-laravel": "^1.0|v2.4", + "orchestra/testbench": "v9.0", + "pestphp/pest": "^v2.34", + "pestphp/pest-plugin-laravel": "v2.4", "laravel/pint": "^1.13", "mockery/mockery": "^1.6", - "pestphp/pest-plugin-parallel": "^1.2" + "pestphp/pest-plugin-type-coverage": "^2.8" }, "autoload": { "psr-4": { From 508c93f3513b4eb6d5ac08f589fc47db97a85ee6 Mon Sep 17 00:00:00 2001 From: David Carr Date: Sun, 12 May 2024 10:37:08 +0100 Subject: [PATCH 2/3] support testbench 8 and 9 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 58a22f5..e13d295 100755 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ "microsoft/microsoft-graph": "^1.110" }, "require-dev": { - "orchestra/testbench": "v9.0", + "orchestra/testbench": "v8.0|v9.0", "pestphp/pest": "^v2.34", "pestphp/pest-plugin-laravel": "v2.4", "laravel/pint": "^1.13", From fe52dbf86f4d911c40372eaa783382add08331dc Mon Sep 17 00:00:00 2001 From: David Carr Date: Sun, 12 May 2024 10:40:28 +0100 Subject: [PATCH 3/3] support testbench 8 and 9 --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 4e521ca..1cc5520 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -10,7 +10,7 @@ jobs: strategy: max-parallel: 2 matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.2', '8.3'] name: PHP ${{ matrix.php-versions }} @@ -27,7 +27,7 @@ jobs: run: composer validate - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest + run: composer install --prefer-dist --no-progress - name: Run Pint run: ./vendor/bin/pint --test