Skip to content

Commit e94c384

Browse files
committed
Add PHP 8.4 to test matrix
1 parent 248220e commit e94c384

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/ci.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- '8.1'
2020
- '8.2'
2121
- '8.3'
22+
- '8.4'
2223
dependencies: [ stable, beta, lowest ]
2324
experimental: [ false ]
2425
include:
@@ -29,7 +30,7 @@ jobs:
2930
- description: 'beta/RC dependencies'
3031
dependencies: beta
3132
# - description: 'nightly with stable dependencies'
32-
# php: 8.4
33+
# php: 8.5
3334
# experimental: true
3435

3536
name: PHP ${{ matrix.php }} ${{ matrix.description }}

.php-cs-fixer.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@
1717

1818
$config = new PhpCsFixer\Config();
1919
return $config
20-
->setRiskyAllowed(true)
20+
// ->setRiskyAllowed(true)
2121
->setRules([
2222
'@Symfony' => true,
23-
'array_syntax' => ['syntax' => 'short'],
2423
'concat_space' => ['spacing' => 'one'],
2524
'header_comment' => ['header' => $header, 'location' => 'after_open'],
2625

27-
'mb_str_functions' => true,
26+
// 'mb_str_functions' => true,
2827
'ordered_imports' => true,
2928
'phpdoc_align' => false,
3029
'phpdoc_separation' => false,

bin/prepare-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33
cd $(dirname $0)/..
44

5-
vendor/bin/php-cs-fixer fix
5+
PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix
66
vendor/bin/phpstan
77
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text
88
vendor/bin/infection --threads=max

composer.json

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
],
2020
"require": {
2121
"php": ">=8.1",
22+
"ext-mbstring": "*",
23+
"ext-intl": "*",
2224
"league/oauth2-client": "^2.4.1"
2325
},
2426
"require-dev": {

0 commit comments

Comments
 (0)