Skip to content

Commit cb74560

Browse files
authored
Merge branch 'main' into feature-orphan
2 parents 6b62e94 + 26d3c93 commit cb74560

File tree

17 files changed

+194
-129
lines changed

17 files changed

+194
-129
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ psalm:
2424
$(PHP_BIN) vendor/bin/psalm --update-baseline
2525

2626
.PHONY: test
27-
test: test-unit test-functional test-integration## Runs all test suites with phpunit/phpunit
27+
test: test-unit test-functional test-integration test-docs## Runs all test suites with phpunit/phpunit
2828

2929
.PHONY: test-unit
3030
test-unit: ## Runs unit tests with phpunit/phpunit
@@ -38,6 +38,10 @@ test-functional: ## Runs functional tests with phpunit/phpunit
3838
test-integration: ## Runs integration tests with phpunit/phpunit
3939
$(PHP_BIN) vendor/bin/phpunit --testsuite=integration
4040

41+
.PHONY: test-docs
42+
test-docs: ## Generate projects docs without warnings
43+
$(PHP_BIN) vendor/bin/guides -vvv --no-progress docs /tmp/test --fail-on-log
44+
4145
.PHONY: cleanup
4246
cleanup: cleanup-tests cleanup-build cleanup-cache
4347

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"psr/log": "^2.0 || ^3.0",
4444
"symfony/contracts": "^2.5 || ^3.0",
4545
"symfony/http-client": "^5.4.25 || ^6.3",
46-
"symfony/process": "^5.4 || ^6.3",
46+
"symfony/process": "^6.3.2",
4747
"symfony/string": "^5.4 || ^6.3",
4848
"symfony/translation-contracts": "^2.1 || ^3.0",
4949
"twig/twig": "~2.0 || ^3.0",
@@ -60,13 +60,13 @@
6060
"phpstan/extension-installer": "^1.3",
6161
"phpstan/phpstan": "^1.10",
6262
"phpstan/phpstan-webmozart-assert": "^1.2",
63-
"phpunit/phpunit": "^10.2",
63+
"phpunit/phpunit": "^10.3",
6464
"psalm/plugin-phpunit": "^0.18.4",
6565
"qossmic/deptrac-shim": "^1.0.2",
66-
"rector/rector": "^0.17.6",
66+
"rector/rector": "^0.17.10",
6767
"squizlabs/php_codesniffer": "^3.7",
6868
"symfony/finder": "^5.4 || ^6.3",
69-
"vimeo/psalm": "^5.13"
69+
"vimeo/psalm": "^5.14"
7070
},
7171
"repositories": [
7272
{

0 commit comments

Comments
 (0)