From 15f43bf3e50a373a6c4431796aeca90841a429d5 Mon Sep 17 00:00:00 2001 From: Yada Clintjens Date: Fri, 24 Nov 2023 12:56:49 +0100 Subject: [PATCH] Run tests on PHP 8.3 and update test suite --- .github/workflows/ci.yml | 6 ++++-- composer.json | 8 ++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21293f7..cf56001 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ jobs: strategy: matrix: php: + - 8.3 - 8.2 - 8.1 - 8.0 @@ -19,7 +20,7 @@ jobs: - 7.2 - 7.1 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} @@ -44,6 +45,7 @@ jobs: strategy: matrix: php: + - 8.3 - 8.2 - 8.1 - 8.0 @@ -52,7 +54,7 @@ jobs: - 7.2 - 7.1 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} diff --git a/composer.json b/composer.json index c1414b3..8dea32e 100644 --- a/composer.json +++ b/composer.json @@ -25,9 +25,13 @@ "phpunit/phpunit": "^9.6 || ^7.5" }, "autoload": { - "psr-4": { "Clue\\React\\Redis\\": "src/" } + "psr-4": { + "Clue\\React\\Redis\\": "src/" + } }, "autoload-dev": { - "psr-4": { "Clue\\Tests\\React\\Redis\\": "tests/" } + "psr-4": { + "Clue\\Tests\\React\\Redis\\": "tests/" + } } }