Skip to content

Commit 8bd03d0

Browse files
committed
feat: drop php 8.1 support (#37)
- test on php 8.3
1 parent 5eafafd commit 8bd03d0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
php-version:
17-
- "8.1"
17+
- "8.2"
1818

1919
steps:
2020
- name: "Checkout"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
strategy:
1717
matrix:
1818
php-version:
19-
- "8.1"
2019
- "8.2"
20+
- "8.3"
2121
dependencies:
2222
- "highest"
2323
include:
2424
- dependencies: "lowest"
25-
php-version: "8.1"
25+
php-version: "8.2"
2626

2727
steps:
2828
- name: "Checkout"

.github/workflows/infection.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: "Install PHP"
2020
uses: "shivammathur/setup-php@v2"
2121
with:
22-
php-version: "8.1"
22+
php-version: "8.2"
2323
coverage: "pcov"
2424

2525
- name: "Install dependencies with Composer"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
php-version:
17-
- "8.1"
17+
- "8.2"
1818

1919
steps:
2020
- name: "Checkout code"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333
},
3434
"require": {
35-
"php": "^8.1",
35+
"php": "^8.2",
3636
"ext-json": "*",
3737
"psr/http-factory": "^1.0",
3838
"psr/http-message": "^1.0 || ^2.0",

0 commit comments

Comments
 (0)