1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
Go to file
2019-06-09 01:07:17 -04:00
assets Delete broken scripts from phar distribution 2019-06-08 16:59:53 -04:00
bin Fix namespacing of generated if 2019-06-08 20:27:49 -04:00
docs Change paths 2019-06-09 01:07:17 -04:00
examples Progress bar (#1709) 2019-05-30 10:30:41 -04:00
src Move docs into subfolders 2019-06-09 00:54:13 -04:00
tests Move docs into subfolders 2019-06-09 00:54:13 -04:00
vendor-bin/box Bump box version 2019-06-08 19:59:23 -04:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore Ignore anything in extra 2019-05-29 16:24:25 -04:00
.php_cs.dist
.scrutinizer.yml
.travis.yml Hack around PHP 7.3 polyfill scoping 2019-06-08 19:51:47 -04:00
box.json.dist Fix reference to psalm_plugin in box.json.dist 2019-06-07 06:52:07 -04:00
CHANGELOG.md
CODE_OF_CONDUCT.md
composer.json Require stable version of openlss/lib-array2xml 2019-06-06 07:06:07 -04:00
config.xsd Fix #1746 - allow DeprecatedInterface to be suppressed with referencedClass 2019-06-06 14:48:33 -04:00
CONTRIBUTING.md
keys.asc.gpg
LICENSE
NEWS.md
phpcs.xml
phpunit.xml.dist Fixed vimeo/psalm#1714 (#1715) 2019-06-01 08:26:22 -04:00
psalm
psalm-language-server
psalm-plugin
psalm-refactor Change psalm-refactor perms 2019-06-05 10:43:51 -04:00
psalm.xml.dist Disable progress bar when forking processes 2019-05-30 15:15:12 -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.