Skip to content

Commit 4180081

Browse files
dependencies in dev are now installed with ignored platform reqs
- zalas/phpunit-globals in a version that supports PHP 8.3 requires PhpUnit 10 and this is not compatible with this library
1 parent 393ffc7 commit 4180081

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ build: install test
66
.PHONY: build
77

88
install:
9-
composer install
9+
composer install --ignore-platform-reqs
1010
.PHONY: install
1111

1212
update:
13-
composer update
13+
composer update --ignore-platform-reqs
1414
.PHONY: update
1515

1616
update-min:
17-
composer update --prefer-stable --prefer-lowest
17+
composer update --ignore-platform-reqs --prefer-stable --prefer-lowest
1818
.PHONY: update-min
1919

2020
update-no-dev:
21-
composer update --prefer-stable --no-dev
21+
composer update --ignore-platform-reqs --prefer-stable --no-dev
2222
.PHONY: update-no-dev
2323

2424
test: vendor cs deptrac phpunit infection

0 commit comments

Comments
 (0)