From 41bd95472513fd857b7d920ddbba00484b529aa9 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Mon, 6 Feb 2023 10:57:18 +0100 Subject: [PATCH 1/3] Laravel 10.x Compatibility --- .github/workflows/run-tests.yml | 8 +++++++- composer.json | 10 +++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 853c17a..050ac21 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,11 +13,17 @@ jobs: fail-fast: true matrix: php: [8.2, 8.1, 8.0] - laravel: [9.*] + laravel: [10.*, 9.*] + os: [ubuntu-latest, windows-latest] stability: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* + exclude: + - laravel: 10.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index 914e57e..4e0b1cd 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^8.0|^8.1|^8.2", - "illuminate/contracts": "^9.0", + "illuminate/contracts": "^9.0|^10.0", "laravel/dusk": "^7.0" }, "conflict": { @@ -25,12 +25,12 @@ }, "require-dev": { "laravel/pint": "^1.0", - "nesbot/carbon": "^2.63", + "nesbot/carbon": "^2.66", "nunomaduro/collision": "^6.0", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^7.0|^8.0", "pestphp/pest": "^1.21", "pestphp/pest-plugin-laravel": "^1.1", - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^10.0" }, "autoload": { "psr-4": { @@ -63,4 +63,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} +} \ No newline at end of file From b2114b2f66b0ebe35079fe61e2c0afa488ba799f Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Mon, 6 Feb 2023 11:20:53 +0100 Subject: [PATCH 2/3] Update composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 4e0b1cd..56e52d8 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ "orchestra/testbench": "^7.0|^8.0", "pestphp/pest": "^1.21", "pestphp/pest-plugin-laravel": "^1.1", - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^9.5|^10.0" }, "autoload": { "psr-4": { @@ -63,4 +63,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +} From 3770737bdf878693e3e41d872b9ea29be16e9ed4 Mon Sep 17 00:00:00 2001 From: pascalbaljet Date: Mon, 6 Feb 2023 10:54:29 +0000 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d27f8e..aa8ed14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-dusk-fakes` will be documented in this file. +## 1.3.0 - 2023-02-06 + +- Support for Laravel 10 + ## 1.2.0 - 2022-12-09 - Support for PHP 8.2