Skip to content

Commit 337f3d4

Browse files
Merge pull request #38 from mkoprek/add_support_for_php_84
Add support for PHP 8.4.*
2 parents a360857 + 6f7009c commit 337f3d4

File tree

3 files changed

+48
-970
lines changed

3 files changed

+48
-970
lines changed

.github/workflows/full-checks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- "8.1"
2626
- "8.2"
2727
- "8.3"
28+
- "8.4"
2829
operating-system:
2930
- "ubuntu-22.04"
3031

composer.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@
2222
}
2323
},
2424
"require": {
25-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
25+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
2626
},
2727
"require-dev": {
2828
"phpstan/phpstan": "^1.5",
2929
"friendsofphp/php-cs-fixer": "^3.8",
30-
"php-parallel-lint/php-parallel-lint": "^1.3",
31-
"vimeo/psalm": "^4.22"
30+
"php-parallel-lint/php-parallel-lint": "^1.3"
3231
},
3332
"scripts": {
3433
"composer-validate": "@composer validate --no-check-all --strict",
@@ -38,14 +37,12 @@
3837
"php-cs-fixer fix --dry-run -v"
3938
],
4039
"phpstan": "phpstan analyse",
41-
"psalm": "psalm",
4240
"lint": "parallel-lint src",
4341
"ci": [
4442
"@composer-validate",
4543
"@lint",
4644
"@cs",
47-
"@phpstan",
48-
"@psalm"
45+
"@phpstan"
4946
]
5047
}
5148
}

0 commit comments

Comments
 (0)