1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
Go to file
2017-02-26 23:09:18 -05:00
assets/config_levels Add config creation utility 2017-02-12 23:59:43 -05:00
bin Restart with xdebug turned off 2017-02-18 17:49:05 -05:00
examples Add better instructions for --init 2017-02-13 00:12:56 -05:00
src/Psalm Collect explicit references to classes/methods 2017-02-26 23:09:18 -05:00
tests Collect explicit references to classes/methods 2017-02-26 23:09:18 -05:00
.gitignore Fixing a typo in the .gitignore filename. 2016-10-20 11:52:14 -04:00
.travis.yml Remove nightly from master due to PhpUnit issue 2017-01-29 00:29:07 -05:00
composer.json Restart with xdebug turned off 2017-02-18 17:49:05 -05:00
composer.lock Restart with xdebug turned off 2017-02-18 17:49:05 -05:00
config.xsd Add dead code detection for possibly unused public methods 2017-02-23 19:52:23 -05:00
LICENSE Add license 2016-11-21 14:48:17 -05:00
phpcs.xml Move string-stored types into named classes 2017-01-15 10:22:05 -05:00
phpunit.xml Update PHPUnit to version without count bug 2016-12-23 21:50:31 +00:00
psalm.xml Remove dead code 2017-02-11 19:30:06 -05:00
PsalmLogo.png New and improved logo 2017-01-16 17:24:26 -05:00
README.md Make phrase hyperlink 2017-02-13 00:18:49 -05:00

logo

Packagist Travis CI

Psalm is a static analysis tool for finding errors in PHP applications.

  • v0.3.x supports checking PHP 5.4 - 7.1 code, and requires PHP 5.5+ to run.
  • v0.2.x supports checking PHP 5.4 - 7.0 code and requires PHP 5.4+ to run.

Check out the wiki or try a live demo!

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.

Acknowledgements

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

Thanks also to @nikic for creating the excellent php-parser, on top of which Psalm is built.