Skip to content

Commit dabbcfc

Browse files
committed
bump to php8.4
1 parent cf95604 commit dabbcfc

15 files changed

+214
-212
lines changed

.github/workflows/qa.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup PHP
1313
uses: shivammathur/setup-php@v2
1414
with:
15-
php-version: "8.3"
15+
php-version: "8.4"
1616
tools: phpcs:3.11, php-cs-fixer:3.64, phpstan:2.0.2
1717
coverage: none
1818
env:
@@ -28,6 +28,8 @@ jobs:
2828
2929
- name: Check coding style with php-cs-fixer
3030
run: php-cs-fixer fix --dry-run --show-progress=dots --diff -vv
31+
env:
32+
PHP_CS_FIXER_IGNORE_ENV: 1
3133

3234
- name: Run static analysis
3335
run: |
@@ -43,7 +45,7 @@ jobs:
4345
- name: Setup PHP
4446
uses: shivammathur/setup-php@v2
4547
with:
46-
php-version: "8.3"
48+
php-version: "8.4"
4749
extensions: mbstring, bcmath, xdebug
4850
tools: phpunit:11.4
4951
coverage: xdebug

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Advent of Code solutions in PHP by TBali
22

3-
![php v8.3](https://shields.io/badge/php-8.3-blue?logo=php)
3+
![php v8.4](https://shields.io/badge/php-8.4-blue?logo=php)
44
![build](https://img.shields.io/github/actions/workflow/status/tbali0524/advent-of-code-solutions/qa.yml)
55
![AoC stars](https://img.shields.io/badge/total%20AoC%20⭐-450-green)
66
![license](https://img.shields.io/github/license/tbali0524/advent-of-code-solutions)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.3",
20+
"php": "^8.4",
2121
"ext-bcmath": "*",
2222
"ext-ctype": "*"
2323
},

phpstan.dist.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# @see https://phpstan.org/config-reference
66
parameters:
77
level: max
8-
phpVersion: 80300
8+
phpVersion: 80400
99
editorUrl: 'vscode://file/%%file%%:%%line%%'
1010
tmpDir: .tools/phpstan
1111
paths:

0 commit comments

Comments
 (0)