File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
run :
10
- runs-on : ubuntu-18.04
10
+ runs-on : ubuntu-latest
11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
@@ -21,10 +21,15 @@ jobs:
21
21
- ' 6.0.*'
22
22
- ' 6.1.*'
23
23
- ' 6.2.*'
24
+ - ' 7.0.*'
25
+ exclude :
26
+ - php : ' 8.1'
27
+ symfony-versions : ' 7.0.*'
24
28
include :
25
29
- description : ' Log Code Coverage'
26
- php : ' 8.1 '
30
+ php : ' 8.2 '
27
31
coverage : ' xdebug'
32
+ symfony-versions : ' ^7.0'
28
33
29
34
name : PHP ${{ matrix.php }} ${{ matrix.description }}
30
35
steps :
62
67
composer require symfony/dependency-injection:${{ matrix.symfony-versions }} --no-update --no-scripts
63
68
composer require symfony/http-kernel:${{ matrix.symfony-versions }} --no-update --no-scripts
64
69
composer require --dev symfony/console:${{ matrix.symfony-versions }} --no-update --no-scripts
70
+ composer require --dev symfony/property-access:${{ matrix.symfony-versions }} --no-update --no-scripts
65
71
66
72
- name : Install dependencies
67
73
run : composer install
Original file line number Diff line number Diff line change 34
34
"doctrine/doctrine-fixtures-bundle" : " ^3.0" ,
35
35
"doctrine/doctrine-migrations-bundle" : " ^3.0" ,
36
36
"theofidry/alice-data-fixtures" : " ^1.0" ,
37
- "symfony/dependency-injection" : " ^4.4 || ^5.4 || ^6.0" ,
38
- "symfony/http-kernel" : " ^4.4 || ^5.4 || ^6.0"
37
+ "symfony/dependency-injection" : " ^4.4 || ^5.4 || ^6.0 || ^7.0 " ,
38
+ "symfony/http-kernel" : " ^4.4 || ^5.4 || ^6.0 || ^7.0 "
39
39
},
40
40
"require-dev" : {
41
41
"phpstan/phpstan" : " ^1.2" ,
42
42
"phpunit/phpunit" : " ^9.5" ,
43
43
"slevomat/coding-standard" : " ^7.0" ,
44
44
"squizlabs/php_codesniffer" : " ^3.6" ,
45
- "symfony/console" : " ^4.4 || ^5.4 || ^6.0"
45
+ "symfony/console" : " ^4.4 || ^5.4 || ^6.0 || ^7.0" ,
46
+ "symfony/property-access" : " ^4.4 || ^5.4 || ^6.0 || ^7.0"
46
47
},
47
48
"autoload" : {
48
49
"psr-4" : {
Original file line number Diff line number Diff line change 19
19
<directory >tests</directory >
20
20
</testsuite >
21
21
</testsuites >
22
- <filter >
23
- <whitelist >
24
- <directory suffix =" .php" >src/</directory >
25
- </whitelist >
26
- </filter >
27
22
<coverage >
28
23
<include >
29
24
<directory >./src</directory >
You can’t perform that action at this time.
0 commit comments