From 817a6b28d7445337d8e257478edd781d2e4d0dee Mon Sep 17 00:00:00 2001 From: Ruslan Demyanovsky Date: Wed, 17 Jul 2024 19:03:40 +0200 Subject: [PATCH] Add support php 8.3 --- .github/workflows/ci.yml | 15 +++++++++++++++ .travis.yml | 1 + Dockerfile | 2 +- composer.json | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8656cc0..061e25a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,4 +61,19 @@ jobs: uses: php-actions/phpunit@v3 with: php_version: "8.2" + version: "10" + + test-php83: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + uses: php-actions/composer@v6 + with: + php_version: "8.3" + - name: PHPUnit Tests + uses: php-actions/phpunit@v3 + with: + php_version: "8.3" version: "10" \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 15427e1..5be01d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ php: - 8.0 - 8.1 - 8.2 +- 8.3 cache: directories: diff --git a/Dockerfile b/Dockerfile index 0819008..e3b717e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2-fpm +FROM php:8.3-fpm RUN apt-get update && apt-get install -y curl diff --git a/composer.json b/composer.json index abc4a9a..b639703 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } }, "require": { - "php": ">=7.4 <8.3", + "php": ">=7.4 <8.4", "ext-json": "*", "guzzlehttp/guzzle": ">=4.1.4" },