Skip to content

Commit

Permalink
[3.x] Add template types
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed Jan 14, 2025
1 parent a8240a5 commit e34831f
Show file tree
Hide file tree
Showing 9 changed files with 3,557 additions and 2,177 deletions.
15 changes: 12 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,21 @@ backward-compatibility-check: ## Check code for backwards incompatible changes
backward-compatibility-check-raw: ## Check code for backwards incompatible changes, doesn't ignore the failure ###
$(DOCKER_RUN) vendor/bin/roave-backward-compatibility-check

shell: ## Provides Shell access in the expected environment ###
$(DOCKER_RUN) ash
shell: ## Provides Shell access in the expected environment ####
$(DOCKER_RUN) bash

install: ## Install dependencies ####
$(DOCKER_RUN) composer install

update: ## Update dependencies ####
$(DOCKER_RUN) composer update -W

outdated: ## Show outdated dependencies ####
$(DOCKER_RUN) composer outdated

task-list-ci: ## CI: Generate a JSON array of jobs to run, matches the commands run when running `make (|all)` ###
@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]'

help: ## Show this help ###
help: ## Show this help ####
@printf "\033[33mUsage:\033[0m\n make [target]\n\n\033[33mTargets:\033[0m\n"
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[32m%-32s\033[0m %s\n", $$1, $$2}' | tr -d '#'
17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,22 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-parallel": "*",
"react-parallel/contracts": "^2@dev",
"react-parallel/event-loop": "^2@dev",
"react-parallel/runtime": "^3@dev",
"react-parallel/contracts": "dev-ensure-void-returntype-translates-to-null",
"react-parallel/event-loop": "dev-2.x-ensure-void-returntype-translates-to-null",
"react-parallel/runtime": "dev-3.x-use-stubs-from-stubs-package",
"react/event-loop": "^1.5",
"react/promise": "^2.9 || ^3.1",
"react/promise": "^2.9 || ^3.2",
"thecodingmachine/safe": "^2.5",
"wyrihaximus/constants": "^1.6",
"wyrihaximus/metrics": "^2",
"wyrihaximus/metrics": "^2.1",
"wyrihaximus/pool-info": "^1.1 || ^2.0"
},
"require-dev": {
"moneyphp/money": "^3.2",
"react-parallel/pool-tests": "^4@dev",
"react-parallel/pool-tests": "dev-4.x-ensure-void-returntype-translates-to-null",
"react-parallel/stubs": "^1.2",
"wyrihaximus/async-test-utilities": "^5 || ^7.2"
},
"autoload": {
Expand All @@ -45,7 +46,7 @@
"infection/extension-installer": true
},
"platform": {
"php": "8.1.13"
"php": "8.2.13"
},
"sort-packages": true
},
Expand Down
Loading

0 comments on commit e34831f

Please sign in to comment.