1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
Go to file
2019-06-07 21:27:50 -04:00
assets Don't allow installation of psalm/phar and vimeo/psalm in the same project 2019-06-07 17:06:00 -04:00
bin Simpler globbing for travis deploy 2019-06-07 08:33:02 -04:00
docs Allow misplaced required params so Psalm still inspects the code 2019-06-07 09:25:12 -04:00
examples Progress bar (#1709) 2019-05-30 10:30:41 -04:00
src Improve treatment of key-of 2019-06-07 21:27:50 -04:00
tests Improve treatment of key-of 2019-06-07 21:27:50 -04:00
vendor-bin/box Downgrade better-reflection version 2019-05-28 01:34:18 -04:00
.appveyor.yml loading in cacert.pem-related changes from 4b5b8208a3 as recommended by @muglug 2019-04-01 16:34:44 -04:00
.editorconfig
.gitattributes Add .gitattributes 2019-03-17 13:30:33 -04:00
.gitignore Ignore anything in extra 2019-05-29 16:24:25 -04:00
.php_cs.dist
.scrutinizer.yml
.travis.yml Use low 7.2 for Phar 2019-06-04 20:32:30 -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 Add autodiscovery of --init folders based on composer.json 2019-05-09 19:19:33 -04:00
keys.asc.gpg
LICENSE
NEWS.md
phpcs.xml Add autodiscovery of --init folders based on composer.json 2019-05-09 19:19:33 -04:00
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 spirit => shepherd 2019-03-31 14:02:30 -04:00
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.