Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use stubs from stubs package #67

Open
wants to merge 1 commit into
base: 3.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ cs: ## Check the code for code style issues
stan: ## Run static analysis (PHPStan)
$(DOCKER_RUN) vendor/bin/phpstan analyse src tests --ansi -c ./etc/qa/phpstan.neon

psalm: ## Run static analysis (Psalm)
$(DOCKER_RUN) vendor/bin/psalm --threads=$(THREADS) --shepherd --stats --config=./etc/qa/psalm.xml

unit-testing: ## Run tests
$(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
$(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
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-parallel": "*",
"react-parallel/event-loop": "^2@dev",
"react-parallel/event-loop": "dev-2.x-ensure-void-returntype-translates-to-null",
"react/event-loop": "^1.5",
"react/promise": "^2.9 || ^3.1",
"react/promise": "^3.1",
"wyrihaximus/constants": "^1.6"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^5 || ^7.2",
"react-parallel/stubs": "^1.2",
"wyrihaximus/async-test-utilities": "^7.2",
"wyrihaximus/ticking-promise": "^3"
},
"autoload": {
Expand All @@ -42,7 +43,7 @@
"infection/extension-installer": true
},
"platform": {
"php": "8.1.13"
"php": "8.2.13"
},
"sort-packages": true
},
Expand Down
Loading
Loading