1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
Go to file
2020-01-23 14:33:07 -05:00
.circleci Ensure BC of API, compat with roave/you-are-using-it-wrong, completeness of composer.json (#2140) 2020-01-01 13:55:33 -05:00
.github/workflows Add support for Github Actions output 2020-01-23 07:14:48 -05:00
assets Remove references to deleted scripts in psalm/phar composer.json (#2514) 2019-12-27 15:56:33 -05:00
bin Use my fork 2020-01-14 01:24:27 -05:00
build/phpunit
docs Add documentation for new issue 2020-01-23 14:33:07 -05:00
examples Move Union::getTypes to Union::getAtomicTypes 2020-01-04 12:20:26 -05:00
src Fix #2632 - detect invalid by-ref assignments in pure functions 2020-01-23 14:21:34 -05:00
tests Fix #2632 - detect invalid by-ref assignments in pure functions 2020-01-23 14:21:34 -05:00
vendor-bin/box
.appveyor.yml Only care about high for now 2019-12-02 00:11:45 -05:00
.editorconfig
.gitattributes
.gitignore Fix: Remove unused friendsofphp/php-cs-fixer (#2603) 2020-01-12 10:52:33 -05:00
.scrutinizer.yml
.travis.yml Enhancement: Validate composer.json (#2601) 2020-01-12 10:43:30 -05:00
box.json.dist
CHANGELOG.md
CODE_OF_CONDUCT.md
composer.json Allow Psalm to be installed on PHP 8 (#2660) 2020-01-17 18:11:44 -05:00
config.xsd Add documentation for new issue 2020-01-23 14:33:07 -05:00
CONTRIBUTING.md
infection.json.dist
keys.asc.gpg
LICENSE
NEWS.md
phpcs.xml Refactor template calculation out from Psalm\Type\Union 2019-11-03 21:27:40 -05:00
phpunit.xml.dist Revert PHPUnit column width to default 2020-01-12 10:47:28 -05:00
psalm
psalm-language-server
psalm-plugin
psalm-refactor
psalm.xml.dist Emit all stubs discovered by Psalm during analysis 2020-01-08 17:23:40 -05:00
PsalmLogo.png
psalter
README.md Simplify logo 2019-12-04 15:18:00 -05:00
scoper.inc.php Added spl_object_id polyfill to scoper whitelist (#2531) 2019-12-29 21:12:03 -05:00

Psalm

Packagist Packagist Travis CI Coverage Status Psalm coverage

Psalm is a static analysis tool for finding errors in PHP applications, built on top of PHP Parser.

It's able to find a large number of issues, but it can also be configured to only care about a small subset of those.

Try a live demo, or install it in your project by following the Quickstart Guide below.

Psalm documentation

Documentation is available on Psalms website, generated from the docs folder.

Quickstart Guide

Install via Composer:

composer require --dev vimeo/psalm

Add a config:

./vendor/bin/psalm --init

Then run Psalm:

./vendor/bin/psalm

The config created above will show you all issues in your code, but will emit INFO issues (as opposed to ERROR) for certain common trivial code problems. If you want a more lenient config, you can specify the level with

./vendor/bin/psalm --init [source_dir] [level]

You can also learn how to suppress certain issues.

How Psalm Works

A basic rundown of Psalms internals can be found in docs/how_psalm_works.md.

Acknowledgements

The engineering team @vimeo for encouragement and patience, especially @nbeliard, @erunion and @nickyr.