Skip to content

Commit 7000e4d

Browse files
committed
Use stubs from stubs package
1 parent e970d8c commit 7000e4d

File tree

10 files changed

+1306
-1537
lines changed

10 files changed

+1306
-1537
lines changed

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ cs: ## Check the code for code style issues
4646
stan: ## Run static analysis (PHPStan)
4747
$(DOCKER_RUN) vendor/bin/phpstan analyse src tests --ansi -c ./etc/qa/phpstan.neon
4848

49-
psalm: ## Run static analysis (Psalm)
50-
$(DOCKER_RUN) vendor/bin/psalm --threads=$(THREADS) --shepherd --stats --config=./etc/qa/psalm.xml
51-
5249
unit-testing: ## Run tests
5350
$(DOCKER_RUN) vendor/bin/phpunit --colors=always -c ./etc/qa/phpunit.xml --coverage-text --coverage-html ./var/tests-unit-coverage-html --coverage-clover ./var/tests-unit-clover-coverage.xml
5451
$(DOCKER_RUN) test -n "$(COVERALLS_REPO_TOKEN)" && test -n "$(COVERALLS_RUN_LOCALLY)" && test -f ./var/tests-unit-clover-coverage.xml && vendor/bin/php-coveralls -v --coverage_clover ./build/logs/clover.xml --json_path ./var/tests-unit-clover-coverage-upload.json || true

composer.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.1",
13+
"php": "^8.2",
1414
"ext-parallel": "*",
15-
"react-parallel/event-loop": "^2@dev",
15+
"react-parallel/event-loop": "dev-2.x-ensure-void-returntype-translates-to-null",
1616
"react/event-loop": "^1.5",
17-
"react/promise": "^2.9 || ^3.1",
17+
"react/promise": "^3.1",
1818
"wyrihaximus/constants": "^1.6"
1919
},
2020
"require-dev": {
21-
"wyrihaximus/async-test-utilities": "^5 || ^7.2",
21+
"react-parallel/stubs": "^1.2",
22+
"wyrihaximus/async-test-utilities": "^7.2",
2223
"wyrihaximus/ticking-promise": "^3"
2324
},
2425
"autoload": {
@@ -42,7 +43,7 @@
4243
"infection/extension-installer": true
4344
},
4445
"platform": {
45-
"php": "8.1.13"
46+
"php": "8.2.13"
4647
},
4748
"sort-packages": true
4849
},

0 commit comments

Comments
 (0)