File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 99 strategy :
1010 matrix :
1111 php : [7.4, 8.0, 8.1]
12+ diactoros : ['diactoros:^1.8.7', 'diactoros:^2.0']
1213
1314 steps :
1415 - name : Checkout code
@@ -42,11 +43,11 @@ jobs:
4243
4344 - name : Install dependencies on PHP 7
4445 if : matrix.php < 8
45- run : composer install --prefer-dist --no-progress --no-interaction --no-suggest
46+ run : composer update --prefer-dist --no-progress --no-interaction --no-suggest --with='laminas/laminas-${{ matrix.diactoros }}'
4647
4748 - name : Install dependencies on PHP 8
4849 if : matrix.php >= 8
49- run : composer install --prefer-dist --no-progress --no-interaction --ignore-platform-req=php
50+ run : composer update --prefer-dist --no-progress --no-interaction --ignore-platform-req=php --with='laminas/laminas-${{ matrix.diactoros }}'
5051
5152 - name : Run test suite
5253 run : php vendor/bin/codecept run functional -c framework-tests
Original file line number Diff line number Diff line change 1616 "codeception/lib-innerbrowser" : " ^2.0" ,
1717 "codeception/codeception" : " ^4.1" ,
1818 "container-interop/container-interop" : " ^1.2" ,
19- "laminas/laminas-diactoros" : " ^1.8.7" ,
19+ "laminas/laminas-diactoros" : " ^1.8.7 || ^2.0 " ,
2020 "mezzio/mezzio" : " ^3.0"
2121 },
2222 "require-dev" : {
You can’t perform that action at this time.
0 commit comments