We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52711dd commit a8f0f92Copy full SHA for a8f0f92
.github/workflows/main.yml
@@ -41,10 +41,10 @@ jobs:
41
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
42
restore-keys: ${{ runner.os }}-composer-
43
- name: Install dependencies with composer
44
- if: matrix.php-versions != '8.2'
+ if: matrix.php-version != '8.2'
45
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
46
- name: Install dependencies with composer php 8.2
47
- if: matrix.php-versions == '8.2'
+ if: matrix.php-version == '8.2'
48
run: composer update --ignore-platform-reqs --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
49
- name: Execute Tests
50
run: |
0 commit comments