File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,9 +100,9 @@ jobs:
100
100
restore-keys : " composer-cache"
101
101
- name : " Install lowest dependencies"
102
102
if : ${{ matrix.dependencies == 'lowest' }}
103
- run : " composer update ${{ env.COMPOSER_FLAGS }} --prefer-lowest --ignore-platform-reqs "
103
+ run : " composer update ${{ env.COMPOSER_FLAGS }} --prefer-lowest"
104
104
- name : " Install highest dependencies"
105
105
if : ${{ matrix.dependencies == 'highest' }}
106
- run : " composer update ${{ env.COMPOSER_FLAGS }} --ignore-platform-reqs "
106
+ run : " composer update ${{ env.COMPOSER_FLAGS }}"
107
107
- name : " Run PHPUnit"
108
108
run : " vendor/bin/phpunit --testdox --coverage-text"
Original file line number Diff line number Diff line change 24
24
}
25
25
},
26
26
"require" : {
27
- "php" : " >= 7.4" ,
27
+ "php" : " ^ 7.4|^8.0 " ,
28
28
"ext-json" : " *"
29
29
},
30
30
"scripts" : {
You can’t perform that action at this time.
0 commit comments