Skip to content

Commit b5b17bd

Browse files
committed
Remove psalm
Psalm not adding much anymore right now, as phpstan is covering most issues perfectly.
1 parent 0c9e12f commit b5b17bd

File tree

5 files changed

+42
-1280
lines changed

5 files changed

+42
-1280
lines changed

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fix-code-style: add-license
1414
$(PHP_BIN) vendor/bin/phpcbf
1515

1616
.PHONY: static-code-analysis
17-
static-code-analysis: vendor phpstan psalm test-architecture ## Runs a static code analysis with phpstan/phpstan and vimeo/psalm
17+
static-code-analysis: vendor phpstan test-architecture ## Runs a static code analysis with phpstan/phpstan and vimeo/psalm
1818

1919
.PHONY: phpstan-baseline
2020
phpstan-baseline:
@@ -24,10 +24,6 @@ phpstan-baseline:
2424
phpstan:
2525
$(PHP_BIN) -d memory_limit=1024M vendor/bin/phpstan --configuration=phpstan.neon
2626

27-
.PHONY: psalm
28-
psalm:
29-
$(PHP_BIN) vendor/bin/psalm --update-baseline
30-
3127
.PHONY: test
3228
test: test-unit test-functional test-integration test-xml test-docs## Runs all test suites with phpunit/phpunit
3329

composer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,11 @@
6363
"phpstan/phpstan-strict-rules": "^1.6",
6464
"phpstan/phpstan-webmozart-assert": "^1.2",
6565
"phpunit/phpunit": "^10.5",
66-
"psalm/plugin-phpunit": "^0.19.0",
6766
"qossmic/deptrac-shim": "^1.0.2",
6867
"rector/rector": "^1.2.9",
6968
"squizlabs/php_codesniffer": "^3.10",
7069
"symfony/finder": "^6.4.8",
71-
"symplify/phpstan-rules": "^13.0",
72-
"vimeo/psalm": "^5.26"
70+
"symplify/phpstan-rules": "^13.0"
7371
},
7472
"suggest": {
7573
"league/csv:": "To use the CSV tables"

0 commit comments

Comments
 (0)