File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 19
19
- ' 8.1'
20
20
- ' 8.2'
21
21
- ' 8.3'
22
+ - ' 8.4'
22
23
dependencies : [ stable, beta, lowest ]
23
24
experimental : [ false ]
24
25
include :
29
30
- description : ' beta/RC dependencies'
30
31
dependencies : beta
31
32
# - description: 'nightly with stable dependencies'
32
- # php: 8.4
33
+ # php: 8.5
33
34
# experimental: true
34
35
35
36
name : PHP ${{ matrix.php }} ${{ matrix.description }}
Original file line number Diff line number Diff line change 17
17
18
18
$ config = new PhpCsFixer \Config ();
19
19
return $ config
20
- ->setRiskyAllowed (true )
20
+ // ->setRiskyAllowed(true)
21
21
->setRules ([
22
22
'@Symfony ' => true ,
23
- 'array_syntax ' => ['syntax ' => 'short ' ],
24
23
'concat_space ' => ['spacing ' => 'one ' ],
25
24
'header_comment ' => ['header ' => $ header , 'location ' => 'after_open ' ],
26
25
27
- 'mb_str_functions ' => true ,
26
+ // 'mb_str_functions' => true,
28
27
'ordered_imports ' => true ,
29
28
'phpdoc_align ' => false ,
30
29
'phpdoc_separation ' => false ,
Original file line number Diff line number Diff line change 2
2
set -e
3
3
cd $( dirname $0 ) /..
4
4
5
- vendor/bin/php-cs-fixer fix
5
+ PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix
6
6
vendor/bin/phpstan
7
7
XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text
8
8
vendor/bin/infection --threads=max
Original file line number Diff line number Diff line change 19
19
],
20
20
"require" : {
21
21
"php" : " >=8.1" ,
22
+ "ext-mbstring" : " *" ,
23
+ "ext-intl" : " *" ,
22
24
"league/oauth2-client" : " ^2.4.1"
23
25
},
24
26
"require-dev" : {
You can’t perform that action at this time.
0 commit comments