Skip to content

Commit e8a2f6a

Browse files
authored
feat: require php8.3+ (#178)
1 parent 2b3f87b commit e8a2f6a

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ jobs:
1515
strategy:
1616
matrix:
1717
php-version:
18-
- "8.2"
1918
- "8.3"
2019
- "8.4"
2120
dependencies:
2221
- "highest"
2322
include:
2423
- dependencies: "lowest"
25-
php-version: "8.2"
24+
php-version: "8.3"
2625

2726
steps:
2827
- name: "Checkout"

.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.2"
17+
- "8.3"
1818

1919
steps:
2020
- 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.2
22+
php-version: "8.3"
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.2"
17+
- "8.3"
1818

1919
steps:
2020
- name: "Checkout code"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"require": {
21-
"php": "^8.2",
21+
"php": "^8.3",
2222
"webonyx/graphql-php": "^15.4"
2323
},
2424
"require-dev": {

phpcs.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<arg name="cache" value=".phpcs-cache" />
77
<arg name="colors" />
88

9-
<config name="php_version" value="81000"/>
9+
<config name="php_version" value="80300"/>
1010

1111
<!-- Ignore warnings, show progress of the run and show sniff names -->
1212
<arg value="nps" />

0 commit comments

Comments
 (0)