Skip to content

Commit d013e3b

Browse files
committed
feat: require php8.3+
1 parent 2b3f87b commit d013e3b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
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"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
}
1919
},
2020
"require": {
21-
"php": "^8.2",
21+
"php": "^8.3",
2222
"webonyx/graphql-php": "^15.4"
2323
},
2424
"require-dev": {
25-
"doctrine/coding-standard": "^12.0",
25+
"cdn77/coding-standard": "^7.4",
2626
"infection/infection": "^0.30.0",
2727
"phpstan/extension-installer": "^1.1",
2828
"phpstan/phpstan": "^2.0",

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)