File tree 4 files changed +10
-8
lines changed
4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -39,18 +39,13 @@ jobs:
39
39
- name : Validate composer.json
40
40
run : composer validate --strict
41
41
42
- - name : Remove analysis dependencies
43
- run : composer remove --dev --no-update sylius-labs/coding-standard
44
- if : matrix.symfony-version == '6.0.*'
45
-
46
42
- name : Install dependencies
47
43
run : composer install --prefer-dist --no-progress
48
44
env :
49
45
SYMFONY_REQUIRE : " ${{ matrix.symfony-version }}"
50
46
51
47
- name : Run coding standard
52
48
run : vendor/bin/ecs check --ansi --no-progress-bar src tests
53
- if : matrix.symfony-version != '6.0.*'
54
49
55
50
- name : Run Psalm
56
51
run : vendor/bin/psalm src --no-progress --php-version="${{ matrix.php-version }}"
Original file line number Diff line number Diff line change 24
24
"friends-of-behat/mink-extension" : " ^2.5" ,
25
25
"friends-of-behat/page-object-extension" : " ^0.3.2" ,
26
26
"friends-of-behat/service-container-extension" : " ^1.1" ,
27
- "sylius-labs/coding-standard" : " ^3.2 " ,
27
+ "sylius-labs/coding-standard" : " ^4.1.1 " ,
28
28
"symfony/browser-kit" : " ^4.4 || ^5.1 || ^6.0" ,
29
29
"symfony/framework-bundle" : " ^4.4 || ^5.1 || ^6.0" ,
30
30
"symfony/process" : " ^4.4 || ^5.1 || ^6.0" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ use Symfony \Component \DependencyInjection \Loader \Configurator \ContainerConfigurator ;
6
+
7
+ return static function (ContainerConfigurator $ containerConfigurator ): void {
8
+ $ containerConfigurator ->import (__DIR__ . '/vendor/sylius-labs/coding-standard/ecs.php ' );
9
+ };
You can’t perform that action at this time.
0 commit comments