2018-02-18 01:53:17 +01:00
|
|
|
# Installation
|
|
|
|
|
2019-03-19 17:02:49 +01:00
|
|
|
Psalm Requires PHP >= 7.0 and [Composer](https://getcomposer.org/).
|
2018-02-18 01:53:17 +01:00
|
|
|
|
|
|
|
```bash
|
2018-04-15 16:56:43 +02:00
|
|
|
composer require --dev vimeo/psalm
|
|
|
|
```
|
|
|
|
|
|
|
|
Add a `psalm.xml` config:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./vendor/bin/psalm --init [source_directory=src] [config_level=3]
|
|
|
|
```
|
|
|
|
|
2018-04-19 07:03:28 +02:00
|
|
|
where `config_level` represents how strict you want Psalm to be. `1` is the strictest, `8` is the most lenient.
|
2018-04-15 18:17:07 +02:00
|
|
|
|
2019-02-11 01:38:26 +01:00
|
|
|
Example:
|
|
|
|
```console
|
|
|
|
$ ./vendor/bin/psalm --init src 3
|
|
|
|
Config file created successfully. Please re-run psalm.
|
|
|
|
```
|
|
|
|
|
2018-04-15 16:56:43 +02:00
|
|
|
Then run Psalm:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./vendor/bin/psalm
|
2018-02-18 01:53:17 +01:00
|
|
|
```
|
2019-03-19 17:08:22 +01:00
|
|
|
|
|
|
|
Psalm will probably find a number of issues - find out how to deal with them in [Dealing with code issues](dealing_with_code_issues.md).
|