1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
Go to file
2017-04-08 11:15:17 -04:00
assets/config_levels Add LessSpecificReturnType as info at all levels 2017-03-18 12:25:42 -04:00
bin Add back XDebug removal 2017-03-20 01:27:56 -04:00
examples Add better instructions for --init 2017-02-13 00:12:56 -05:00
src/Psalm Fix #130 - check class exists before checking for __invoke 2017-04-08 11:15:17 -04:00
tests Fix #130 - check class exists before checking for __invoke 2017-04-08 11:15:17 -04:00
.gitignore Ignore .DS_Store 2017-03-01 19:44:37 -05:00
.travis.yml Replace hhvm with 7.1 2017-04-03 13:51:45 -04: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 PossiblyUndefinedArgument issue to cope with #126 2017-04-08 09:28:02 -04: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 Suppress PossiblyUnusedMethods in tests 2017-02-26 23:47:15 -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.