Skip to content

Commit 8dddaa0

Browse files
committed
require php 8.4
1 parent 89ab70e commit 8dddaa0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
php-version:
15-
- 8.2
16-
- 8.3
1715
- 8.4
1816

1917
steps:

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^8.2"
24+
"php": "^8.4"
2525
},
2626
"require-dev": {
2727
"phpstan/phpstan": "^2.1.17",
@@ -135,7 +135,9 @@
135135
}
136136
},
137137
"scripts": {
138-
"tests": "vendor/bin/phpunit",
139-
"coding-style": "vendor/bin/phpcs && vendor/bin/php-cs-fixer fix --dry-run --diff --config=.php_cs.dist"
138+
"cs": "vendor/bin/php-cs-fixer fix",
139+
"phpstan": "vendor/bin/phpstan",
140+
"rector": "vendor/bin/rector",
141+
"test": "vendor/bin/phpunit"
140142
}
141143
}

0 commit comments

Comments
 (0)