Skip to content

Commit 9e50ce3

Browse files
committed
[2.x] Template types
1 parent a00a968 commit 9e50ce3

File tree

9 files changed

+3480
-2120
lines changed

9 files changed

+3480
-2120
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 reactphp-parallel
3+
Copyright (c) 2025 reactphp-parallel
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
3232

3333
## License ##
3434

35-
Copyright 2024 [Cees-Jan Kiewiet](http://wyrihaximus.net/)
35+
Copyright 2025 [Cees-Jan Kiewiet](http://wyrihaximus.net/)
3636

3737
Permission is hereby granted, free of charge, to any person
3838
obtaining a copy of this software and associated documentation

composer.json

+6-9
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,15 @@
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": "^2.0.0",
1616
"react/event-loop": "^1.5",
17-
"react/promise": "^2.11 || ^3.1",
18-
"reactivex/rxphp": "^2.0.12",
19-
"wyrihaximus/constants": "^1.6",
20-
"wyrihaximus/react-awaitable-observable": "^1",
21-
"wyrihaximus/react-event-loop-rx-scheduler-hook-up": "^0.1.1"
17+
"react/promise": "^3.2"
2218
},
2319
"require-dev": {
24-
"wyrihaximus/async-test-utilities": "^5 || ^7.2",
20+
"react-parallel/stubs": "^1.2",
21+
"wyrihaximus/async-test-utilities": "^7.3",
2522
"wyrihaximus/ticking-promise": "^3"
2623
},
2724
"autoload": {
@@ -42,7 +39,7 @@
4239
"infection/extension-installer": true
4340
},
4441
"platform": {
45-
"php": "8.1.13"
42+
"php": "8.2.13"
4643
},
4744
"sort-packages": true
4845
},

0 commit comments

Comments
 (0)