File tree Expand file tree Collapse file tree 5 files changed +266
-180
lines changed Expand file tree Collapse file tree 5 files changed +266
-180
lines changed Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
php-version :
17
- - " 7.3"
18
17
- " 7.4"
19
18
- " 8.0"
19
+ - " 8.1"
20
20
dependencies :
21
21
- " lowest"
22
22
- " highest"
41
41
dependency-versions : " ${{ matrix.dependencies }}"
42
42
composer-options : " ${{ matrix.composer-options }}"
43
43
44
+ # Exclude E_DEPRECATED on PHP 8.1.
45
+ # Remove once https://github.com/tomzx/php-semver-checker/pull/112 fixed
46
+ - name : Sets error reporting
47
+ if : contains(${{ matrix.php-version }}, '8.1')
48
+ run : echo "error_reporting=24575" >> $GITHUB_ENV
49
+
44
50
- name : Run unit tests suite
45
51
run : vendor/bin/phpunit --configuration tests/Unit/phpunit.xml.dist
46
52
Original file line number Diff line number Diff line change 8
8
],
9
9
"bin" : [" bin/svc" ],
10
10
"require" : {
11
- "php" : " ~7.3 .0||~7.4 .0||~8.0 .0" ,
11
+ "php" : " ~7.4 .0||~8.0 .0||~8.1 .0" ,
12
12
"ext-json" : " *" ,
13
- "laminas/laminas-dependency-plugin" : " ^2.1 .0" ,
14
- "laminas/laminas-stdlib" : " ~3.5 .0" ,
13
+ "laminas/laminas-dependency-plugin" : " ^2.2 .0" ,
14
+ "laminas/laminas-stdlib" : " ~3.6 .0" ,
15
15
"nikic/php-parser" : " ~4.12.0" ,
16
16
"phpstan/phpdoc-parser" : " ^0.5.5" ,
17
17
"sabre/xml" : " ~2.2.3" ,
18
18
"symfony/console" : " ~4.1.0||~4.4.0" ,
19
- "tomzx/php-semver-checker" : " ^0.14 .0" ,
19
+ "tomzx/php-semver-checker" : " ^0.15 .0" ,
20
20
"wikimedia/less.php" : " ~3.1.0"
21
21
},
22
22
"require-dev" : {
You can’t perform that action at this time.
0 commit comments