From 025b28c7b69303d9311758e8f5875a5b1947ed33 Mon Sep 17 00:00:00 2001 From: pascalbaljet Date: Fri, 9 Dec 2022 15:06:58 +0100 Subject: [PATCH] Support for PHP 8.2 --- .github/workflows/run-tests.yml | 2 +- README.md | 2 +- composer.json | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 95a4d60..853c17a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.0] + php: [8.2, 8.1, 8.0] laravel: [9.*] stability: [prefer-lowest, prefer-stable] include: diff --git a/README.md b/README.md index 2f92dea..f135820 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Total Downloads](https://img.shields.io/packagist/dt/protonemedia/laravel-dusk-fakes.svg?style=flat-square)](https://packagist.org/packages/protonemedia/laravel-dusk-fakes) [![Buy us a tree](https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen)](https://plant.treeware.earth/protonemedia/laravel-dusk-fakes) -## Support this package! +## Sponsor this package! ❤️ We proudly support the community by developing Laravel packages and giving them away for free. If this package saves you time or if you're relying on it professionally, please consider [sponsoring the maintenance and development](https://github.com/sponsors/pascalbaljet). Keeping track of issues and pull requests takes time, but we're happy to help! diff --git a/composer.json b/composer.json index ced6339..914e57e 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.0|^8.1", + "php": "^8.0|^8.1|^8.2", "illuminate/contracts": "^9.0", "laravel/dusk": "^7.0" }, @@ -25,6 +25,7 @@ }, "require-dev": { "laravel/pint": "^1.0", + "nesbot/carbon": "^2.63", "nunomaduro/collision": "^6.0", "orchestra/testbench": "^7.0", "pestphp/pest": "^1.21", @@ -62,4 +63,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +}