Skip to content

Commit 3903e97

Browse files
authored
chore(deps): require php 8.2+ (#134)
1 parent 46c9fcf commit 3903e97

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ jobs:
1919
strategy:
2020
matrix:
2121
php-version:
22-
- "8.1"
2322
- "8.2"
2423
- "8.3"
2524
dependencies:
2625
- "highest"
2726
include:
2827
- dependencies: "lowest"
29-
php-version: "8.1"
28+
php-version: "8.2"
3029

3130
steps:
3231
- name: "Checkout"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@v2"
2828
with:
29-
php-version: "8.1"
29+
php-version: "8.2"
3030
coverage: "none"
3131
extensions: "rdkafka"
3232
tools: "cs2pr, pecl"

.github/workflows/infection.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: "Install PHP"
3131
uses: "shivammathur/setup-php@v2"
3232
with:
33-
php-version: "8.1"
33+
php-version: "8.2"
3434
coverage: "pcov"
3535
extensions: "rdkafka"
3636

.github/workflows/static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: "Install PHP"
2727
uses: "shivammathur/setup-php@v2"
2828
with:
29-
php-version: "8.1"
29+
php-version: "8.2"
3030
coverage: "none"
3131
extensions: "rdkafka"
3232
tools: "cs2pr, pecl"
@@ -53,7 +53,7 @@ jobs:
5353
- name: "Install PHP"
5454
uses: "shivammathur/setup-php@v2"
5555
with:
56-
php-version: "8.1"
56+
php-version: "8.2"
5757
coverage: "none"
5858
extensions: "rdkafka"
5959
tools: "cs2pr"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"sort-packages": true
1919
},
2020
"require": {
21-
"php": "^8.1",
21+
"php": "^8.2",
2222
"ext-pcntl": "*",
2323
"ext-rdkafka": "^6",
2424
"psr/log": "^1.1 || ^2 || ^3",

0 commit comments

Comments
 (0)