2016-12-07 06:24:29 +01:00
< img src = "https://travis-ci.org/vimeo/psalm.svg?branch=master" / >
2016-10-29 18:47:03 +02:00
< h1 > < img src = "PsalmLogo.png" height = "64" alt = "logo" / > < / h1 >
2016-07-18 22:46:44 +02:00
2016-12-05 05:19:14 +01:00
Psalm is a static analysis tool for finding errors in PHP applications.
Version 0.3.x supports checking PHP 5.4 - 7.1 code, and requires PHP 5.5 and higher to run.
Version 0.2.x supports checking PHP 5.4 - 7.0 code and requires PHP 5.4 and higher to run.
2016-11-11 20:19:31 +01:00
2016-11-21 19:20:47 +01:00
Check out the [wiki ](https://github.com/vimeo/psalm/wiki )!
2016-11-21 21:15:23 +01:00
## Quickstart Guide
Install via [Composer ](https://getcomposer.org/ ):
```bash
composer require --dev "vimeo/psalm:dev-master"
composer install
```
Add a `psalm.xml` config:
```bash
cat > psalm.xml < < EOF
<?xml version="1.0"?>
< psalm
stopOnFirstError="false"
useDocblockTypes="true"
>
< inspectFiles >
< directory name = "src" / >
< / inspectFiles >
< / psalm >
EOF
```
Then run Psalm with:
```bash
./vendor/bin/psalm
```
The above config is spartan, and will show you *all* possible errors, including many that are likely irrelevant to you. A more lenient config is provided [here ](examples/psalm.default.xml ).