Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update psalm to v4.4.1 #467

Merged
merged 1 commit into from
Jan 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .phive/phars.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<phar name="php-cs-fixer" version="^2.16.3" installed="2.18.2" location="./tools/php-cs-fixer" copy="true"/>
<phar name="phpunit" version="^8.5.13||^9.4" installed="8.5.13" location="./tools/phpunit.phar" copy="true"/>
<phar name="phpstan" version="^0.12.29" installed="0.12.70" location="./tools/phpstan" copy="true"/>
<phar name="psalm" version="^4.3.0" installed="4.3.1" location="./tools/psalm" copy="true"/>
<phar name="psalm" version="^4.3.0" installed="4.4.1" location="./tools/psalm" copy="true"/>
<phar name="humbug/box" version="^3.9.1" installed="3.11.0" location="./tools/box" copy="true"/>
<phar name="infection" version="^0.20.1" installed="0.20.1" location="./tools/infection" copy="true"/>
</phive>
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ build: tools-install tests
$(BOX_BIN) compile

tools-install:
gpg --keyserver hkps://keyserver.ubuntu.com --receive-keys E82B2FB314E9906E 4AA394086372C20A 8E730BA25823D8B5 CF1A108D0E7AE720 8A03EA3B385DBAA1 C5095986493B4AA0
$(PHIVE_BIN) --no-progress install --copy --trust-gpg-keys E82B2FB314E9906E,4AA394086372C20A,8E730BA25823D8B5,CF1A108D0E7AE720,8A03EA3B385DBAA1,C5095986493B4AA0 --force-accept-unsigned
gpg --keyserver hkps://keyserver.ubuntu.com --receive-keys E82B2FB314E9906E
gpg --keyserver hkps://keys.openpgp.org --receive-keys 4AA394086372C20A CF1A108D0E7AE720 C5095986493B4AA0 12CE0F1D262429A5
$(PHIVE_BIN) --no-progress install --copy --trust-gpg-keys E82B2FB314E9906E,4AA394086372C20A,CF1A108D0E7AE720,C5095986493B4AA0,12CE0F1D262429A5 --force-accept-unsigned

composer-install:
$(COMPOSER_BIN) install --optimize-autoloader
Expand Down