From a1ce38b3cfe4fa07ac2bba5b71f9549dcc48f90e Mon Sep 17 00:00:00 2001 From: Sudhir Mitharwal Date: Tue, 7 Apr 2026 10:44:44 +0530 Subject: [PATCH] fix(php83): add support for php8.3 --- .github/workflows/test.yml | 5 ++--- composer.json | 2 +- phpunit.xml | 12 ++++++------ 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04a2510..d695bea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,12 +8,11 @@ on: jobs: tests: - runs-on: ubuntu-latest strategy: fail-fast: true matrix: - php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2] + php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3] name: P${{ matrix.php }} @@ -22,7 +21,7 @@ jobs: uses: actions/checkout@v4 - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.composer/cache/files key: php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} diff --git a/composer.json b/composer.json index 6e2aaf1..0b9d68b 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "email": "luckysud4@gmail.com" }, "require": { - "php": ">=7.1|^8.0|^8.1|^8.2", + "php": ">=7.1|^8.0|^8.1|^8.2|^8.3", "guzzlehttp/guzzle": "^6.5.5|^7.0.1" }, "require-dev": { diff --git a/phpunit.xml b/phpunit.xml index c846bce..9cc9aa5 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,13 +1,13 @@ - - - - ./src/ - - + ./tests/ + + + ./src/ + +