1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
Go to file
2019-08-31 14:54:59 -04:00
.circleci Remove circleci build step properly 2019-08-26 00:45:40 -04:00
assets Add a PossibleRawObjectIteration issue 2019-08-20 12:06:02 -04:00
bin Reduce output of PHPUnit test 2019-08-13 00:01:35 -04:00
build/phpunit
docs Annotate method getters more accurately 2019-08-30 16:40:32 -04:00
examples Remove redundant @psalm-suppress in Psalm’s codebsae 2019-08-18 16:10:12 -04:00
src Allow pure functions/methods to be called and not destroy known properties 2019-08-31 14:54:59 -04:00
tests Make @immutable work properly 2019-08-31 10:07:23 -04:00
vendor-bin/box
.appveyor.yml Ignore PHP 7.1 & PHP 7.2 on Windows 2019-08-21 14:04:59 -04:00
.editorconfig
.gitattributes
.gitignore
.php_cs.dist
.scrutinizer.yml
.travis.yml Test on nightly build (#2040) 2019-08-21 11:32:50 -04:00
box.json.dist
CHANGELOG.md
CODE_OF_CONDUCT.md
composer.json
config.xsd Annotate method getters more accurately 2019-08-30 16:40:32 -04:00
CONTRIBUTING.md
infection.json.dist
keys.asc.gpg
LICENSE
NEWS.md
phpcs.xml
phpunit.xml.dist
psalm
psalm-language-server
psalm-plugin
psalm-refactor
psalm.xml.dist Fix #2041 - make sure property is always set 2019-08-21 11:25:08 -04:00
PsalmLogo.png
psalter
README.md
scoper.inc.php

logo

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.