From 9de5e377b70a53579c088a1a9572cf023d534271 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 10:10:20 +0100 Subject: [PATCH 1/3] Add L10 and remove L8 support --- .github/workflows/ci.yml | 2 +- composer.json | 4 ++-- phpunit.xml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc9162b..171b7f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - laravel: [8, 9] + laravel: [9, 10] steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index c2487c7..850f57e 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,11 @@ } }, "require": { - "php": "^8.0", + "php": "^8.1", "livewire/livewire": "^2.10" }, "require-dev": { - "orchestra/testbench": "^6.9|^7.0" + "orchestra/testbench": "^7.0|^8.0" }, "minimum-stability": "dev", "prefer-stable": true diff --git a/phpunit.xml b/phpunit.xml index e42db93..ee18072 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,6 +1,6 @@ - - + + ./src From 8e8d236930b711af1b1802c83706a8347af90b4f Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 10:17:47 +0100 Subject: [PATCH 2/3] Set XDEBUG_MODE env variable --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 171b7f3..84987d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,8 @@ name: CI +env: + XDEBUG_MODE: 'coverage' + on: push: pull_request: From 769a1bda08551b7976927ce745f1debe2f2820bb Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 13:17:56 +0100 Subject: [PATCH 3/3] Require PHP `^8.0` --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 850f57e..2f87a0b 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } }, "require": { - "php": "^8.1", + "php": "^8.0", "livewire/livewire": "^2.10" }, "require-dev": {