Skip to content

Commit 4b58a5d

Browse files
committed
Add --ignore-platform-req=php to composer install.
1 parent fd9bdca commit 4b58a5d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/ci-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
php-version: '8.3'
2222
tools: composer:v2
23-
- run: composer install --dev
23+
- run: composer install --dev --ignore-platform-req=php
2424
shell: bash
2525
- run: composer cs:list
2626
shell: bash

.github/workflows/ci-leak-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
php-version: ${{ matrix.php-version }}
2626
tools: composer:v2
27-
- run: composer install
27+
- run: composer install --ignore-platform-req=php
2828
shell: bash
2929
- run: composer test:leak
3030
shell: bash

.github/workflows/ci-mutant-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
php-version: '8.3'
2222
tools: composer:v2
23-
- run: composer install
23+
- run: composer install --ignore-platform-req=php
2424
shell: bash
2525
- run: composer test:mutant
2626
shell: bash

.github/workflows/ci-phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
php-version: '8.3'
2222
tools: composer:v2
23-
- run: composer install
23+
- run: composer install --ignore-platform-req=php
2424
shell: bash
2525
- run: composer phpstan
2626
shell: bash

.github/workflows/ci-psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
php-version: '8.3'
2222
tools: composer:v2
23-
- run: composer install
23+
- run: composer install --ignore-platform-req=php
2424
shell: bash
2525
- run: composer psalm
2626
shell: bash

.github/workflows/ci-unit-test-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
php-version: '8.3'
2424
extensions: xdebug
2525
tools: composer:v2
26-
- run: composer install
26+
- run: composer install --ignore-platform-req=php
2727
shell: bash
2828
- run: composer test:coverage:xml
2929
shell: bash

.github/workflows/ci-unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
php-version: ${{ matrix.php-version }}
2626
tools: composer:v2
27-
- run: composer install --ignore-platform-reqs
27+
- run: composer install --ignore-platform-req=php
2828
shell: bash
2929
- run: composer test
3030
shell: bash

0 commit comments

Comments
 (0)