1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
Go to file
2020-02-17 22:06:55 -05:00
.circleci Clarify documentation of --diff and --diff-methods (#2680) 2020-01-25 10:50:11 -05:00
.github/workflows Add support for Github Actions output 2020-01-23 07:14:48 -05:00
assets/psalm-phar Make config generation smarter 2020-02-17 22:05:58 -05:00
bin Make config generation smarter 2020-02-17 22:05:58 -05:00
build/phpunit
docs Update documentation 2020-02-17 22:06:28 -05:00
examples Use MethodIdentifier object instead of string 2020-02-14 20:54:26 -05:00
src If no level or totallyTyped is given, use level 2 2020-02-17 22:06:55 -05:00
tests Make config generation smarter 2020-02-17 22:05:58 -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 Simplify 2020-02-07 12:15:50 -05:00
box.json.dist
CODE_OF_CONDUCT.md
composer.json Lock parser range 2020-02-17 22:03:11 -05:00
config.xsd Make config generation smarter 2020-02-17 22:05:58 -05:00
CONTRIBUTING.md
infection.json.dist
keys.asc.gpg
LICENSE
NEWS.md
phpcs.xml
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 Make config generation smarter 2020-02-17 22:05:58 -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.