Skip to content

Commit 784a8a1

Browse files
committed
Removed Psalm static analysis
1 parent 7a2cc53 commit 784a8a1

40 files changed

+99
-1289
lines changed

.github/workflows/php.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,5 @@ jobs:
3434
- name: Run test suite
3535
run: composer run-script test
3636

37-
- name: Run Psalm static analysis
38-
run: composer run-script psalm
39-
4037
- name: Run PHPStan static analysis
4138
run: composer run-script phpstan

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
/.phpunit.result.cache
33
/.php-cs-fixer.cache
44
/phpstan.neon
5-
/psalm.xml

composer.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@
2727
"friendsofphp/php-cs-fixer": "^3.8",
2828
"jetbrains/phpstorm-stubs": ">=2022.1",
2929
"phpstan/phpstan": "^1.10",
30-
"phpunit/phpunit": "^9.5",
31-
"psalm/plugin-phpunit": ">=0.16",
32-
"vimeo/psalm": "^5.9"
30+
"phpunit/phpunit": "^9.5"
3331
},
3432
"autoload": {
3533
"psr-4": {
@@ -43,16 +41,12 @@
4341
},
4442
"minimum-stability": "stable",
4543
"config": {
46-
"allow-plugins": {
47-
"psalm/plugin-phpunit": true
48-
},
4944
"optimize-autoloader": true,
5045
"sort-packages": true
5146
},
5247
"scripts": {
5348
"php-cs-fixer": "php-cs-fixer fix .",
5449
"phpstan": "phpstan analyse -c phpstan.neon.dist",
55-
"psalm": "psalm --show-info=true --find-unused-psalm-suppress=true -c psalm.xml.dist",
5650
"test": "phpunit -c ."
5751
}
5852
}

0 commit comments

Comments
 (0)