Skip to content

Commit c1e1038

Browse files
Upgraded static analyzers
1 parent 4580418 commit c1e1038

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ jobs:
9999
command: composer bin psalm update --no-interaction --no-progress
100100

101101
- name: Execute Psalm
102-
run: vendor/bin/psalm --no-progress --output-format=github
102+
run: vendor/bin/psalm.phar --no-progress --output-format=github

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ phpstan-analyze-tests:
1212
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/phpstan --rm registry.gitlab.com/grahamcampbell/php:7.4-cli analyze tests -c phpstan.tests.neon.dist
1313

1414
psalm-analyze:
15-
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/psalm --rm registry.gitlab.com/grahamcampbell/php:7.4-cli
15+
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/psalm.phar --rm registry.gitlab.com/grahamcampbell/php:7.4-cli
1616

1717
psalm-show-info:
18-
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/psalm --rm registry.gitlab.com/grahamcampbell/php:7.4-cli --show-info=true
18+
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/psalm.phar --rm registry.gitlab.com/grahamcampbell/php:7.4-cli --show-info=true
1919

2020
test: phpunit phpstan-analyze-src phpstan-analyze-tests psalm-analyze
2121

vendor-bin/phpstan/composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"require": {
3-
"phpstan/phpstan": "~0.12.32",
4-
"phpstan/extension-installer": "~1.0.4",
5-
"phpstan/phpstan-deprecation-rules": "~0.12.4",
6-
"phpstan/phpstan-strict-rules": "~0.12.2",
7-
"thecodingmachine/phpstan-strict-rules": "~0.12.0"
3+
"phpstan/phpstan": "0.12.58",
4+
"phpstan/extension-installer": "1.0.5",
5+
"phpstan/phpstan-deprecation-rules": "0.12.5",
6+
"phpstan/phpstan-strict-rules": "0.12.5",
7+
"thecodingmachine/phpstan-strict-rules": "0.12.1"
88
},
99
"config": {
1010
"preferred-install": "dist"

vendor-bin/psalm/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"vimeo/psalm": "~3.12.2"
3+
"psalm/phar": "4.2.1"
44
},
55
"config": {
66
"preferred-install": "dist"

0 commit comments

Comments
 (0)