We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ab70e commit 8dddaa0Copy full SHA for 8dddaa0
2 files changed
.github/workflows/ci.yaml
@@ -12,8 +12,6 @@ jobs:
12
fail-fast: false
13
matrix:
14
php-version:
15
- - 8.2
16
- - 8.3
17
- 8.4
18
19
steps:
composer.json
@@ -21,7 +21,7 @@
21
}
22
],
23
"require": {
24
- "php": "^8.2"
+ "php": "^8.4"
25
},
26
"require-dev": {
27
"phpstan/phpstan": "^2.1.17",
@@ -135,7 +135,9 @@
135
136
137
"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"
+ "cs": "vendor/bin/php-cs-fixer fix",
+ "phpstan": "vendor/bin/phpstan",
140
+ "rector": "vendor/bin/rector",
141
+ "test": "vendor/bin/phpunit"
142
143
0 commit comments