Skip to content

Commit

Permalink
Add --ignore-platform-req=php to composer install.
Browse files Browse the repository at this point in the history
  • Loading branch information
Syndesi committed Dec 3, 2023
1 parent fd9bdca commit 4b58a5d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
php-version: '8.3'
tools: composer:v2
- run: composer install --dev
- run: composer install --dev --ignore-platform-req=php
shell: bash
- run: composer cs:list
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci-leak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
- run: composer install
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer test:leak
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci-mutant-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
php-version: '8.3'
tools: composer:v2
- run: composer install
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer test:mutant
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
php-version: '8.3'
tools: composer:v2
- run: composer install
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer phpstan
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci-psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
php-version: '8.3'
tools: composer:v2
- run: composer install
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer psalm
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci-unit-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
php-version: '8.3'
extensions: xdebug
tools: composer:v2
- run: composer install
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer test:coverage:xml
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
- run: composer install --ignore-platform-reqs
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer test
shell: bash

0 comments on commit 4b58a5d

Please sign in to comment.