Skip to content

Commit 722b7d7

Browse files
authored
Add support for PHP 8.3 (#75)
2 parents 844e667 + 9c9da85 commit 722b7d7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: "Setup PHP"
2323
uses: shivammathur/setup-php@v2
2424
with:
25-
php-version: "8.2"
25+
php-version: "8.3"
2626
extensions: mbstring, intl
2727
ini-values: post_max_size=256M, max_execution_time=180
2828
coverage: xdebug

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: true
3131
matrix:
3232
operating-system: ["ubuntu-latest"]
33-
php-versions: ["8.0", "8.1", "8.2"]
33+
php-versions: ["8.0", "8.1", "8.2", "8.3"]
3434

3535
steps:
3636
- name: "Checkout"
@@ -82,7 +82,7 @@ jobs:
8282
fail-fast: true
8383
matrix:
8484
operating-system: ["ubuntu-latest"]
85-
php-versions: ["8.0", "8.1", "8.2"]
85+
php-versions: ["8.0", "8.1", "8.2", "8.3"]
8686

8787
steps:
8888
- name: "Checkout"

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"php80",
88
"php81",
99
"php82",
10+
"php83",
1011
"analytics",
1112
"analytics 4",
1213
"google analytics",
@@ -42,7 +43,7 @@
4243
}
4344
},
4445
"require": {
45-
"php": ">=8.0,<8.3",
46+
"php": ">=8.0,<8.4",
4647
"guzzlehttp/guzzle": "^7.0"
4748
},
4849
"require-dev": {

0 commit comments

Comments
 (0)