Skip to content

Commit

Permalink
Add support php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
demyan112rv committed Jul 17, 2024
1 parent bf29077 commit 817a6b2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ php:
- 8.0
- 8.1
- 8.2
- 8.3

cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-fpm
FROM php:8.3-fpm

RUN apt-get update && apt-get install -y curl

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
},
"require": {
"php": ">=7.4 <8.3",
"php": ">=7.4 <8.4",
"ext-json": "*",
"guzzlehttp/guzzle": ">=4.1.4"
},
Expand Down

0 comments on commit 817a6b2

Please sign in to comment.