Skip to content

Commit e34831f

Browse files
committed
[3.x] Add template types
1 parent a8240a5 commit e34831f

File tree

9 files changed

+3557
-2177
lines changed

9 files changed

+3557
-2177
lines changed

Makefile

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,21 @@ backward-compatibility-check: ## Check code for backwards incompatible changes
7878
backward-compatibility-check-raw: ## Check code for backwards incompatible changes, doesn't ignore the failure ###
7979
$(DOCKER_RUN) vendor/bin/roave-backward-compatibility-check
8080

81-
shell: ## Provides Shell access in the expected environment ###
82-
$(DOCKER_RUN) ash
81+
shell: ## Provides Shell access in the expected environment ####
82+
$(DOCKER_RUN) bash
83+
84+
install: ## Install dependencies ####
85+
$(DOCKER_RUN) composer install
86+
87+
update: ## Update dependencies ####
88+
$(DOCKER_RUN) composer update -W
89+
90+
outdated: ## Show outdated dependencies ####
91+
$(DOCKER_RUN) composer outdated
8392

8493
task-list-ci: ## CI: Generate a JSON array of jobs to run, matches the commands run when running `make (|all)` ###
8594
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | grep -v "###" | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "%s\n", $$1}' | jq --raw-input --slurp -c 'split("\n")| .[0:-1]'
8695

87-
help: ## Show this help ###
96+
help: ## Show this help ####
8897
@printf "\033[33mUsage:\033[0m\n make [target]\n\n\033[33mTargets:\033[0m\n"
8998
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[32m%-32s\033[0m %s\n", $$1, $$2}' | tr -d '#'

composer.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,22 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.1",
13+
"php": "^8.2",
1414
"ext-parallel": "*",
15-
"react-parallel/contracts": "^2@dev",
16-
"react-parallel/event-loop": "^2@dev",
17-
"react-parallel/runtime": "^3@dev",
15+
"react-parallel/contracts": "dev-ensure-void-returntype-translates-to-null",
16+
"react-parallel/event-loop": "dev-2.x-ensure-void-returntype-translates-to-null",
17+
"react-parallel/runtime": "dev-3.x-use-stubs-from-stubs-package",
1818
"react/event-loop": "^1.5",
19-
"react/promise": "^2.9 || ^3.1",
19+
"react/promise": "^2.9 || ^3.2",
2020
"thecodingmachine/safe": "^2.5",
2121
"wyrihaximus/constants": "^1.6",
22-
"wyrihaximus/metrics": "^2",
22+
"wyrihaximus/metrics": "^2.1",
2323
"wyrihaximus/pool-info": "^1.1 || ^2.0"
2424
},
2525
"require-dev": {
2626
"moneyphp/money": "^3.2",
27-
"react-parallel/pool-tests": "^4@dev",
27+
"react-parallel/pool-tests": "dev-4.x-ensure-void-returntype-translates-to-null",
28+
"react-parallel/stubs": "^1.2",
2829
"wyrihaximus/async-test-utilities": "^5 || ^7.2"
2930
},
3031
"autoload": {
@@ -45,7 +46,7 @@
4546
"infection/extension-installer": true
4647
},
4748
"platform": {
48-
"php": "8.1.13"
49+
"php": "8.2.13"
4950
},
5051
"sort-packages": true
5152
},

0 commit comments

Comments
 (0)