26 lines
797 B
XML
26 lines
797 B
XML
<?xml version="1.0"?>
|
|
<psalm
|
|
errorLevel="1"
|
|
resolveFromConfigFile="true"
|
|
findUnusedVariablesAndParams="true"
|
|
findUnusedPsalmSuppress="true"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="https://getpsalm.org/schema/config"
|
|
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
|
>
|
|
<!--
|
|
checkForThrowsInGlobalScope="true"
|
|
findUnusedCode="true"
|
|
-->
|
|
<projectFiles>
|
|
<directory name="src/"/>
|
|
<directory name="tests/"/>
|
|
<file name="doc/quickstart.php"/>
|
|
</projectFiles>
|
|
|
|
<plugins>
|
|
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
|
|
<pluginClass class="AlexS\Guzzle\PsalmPlugin"/>
|
|
</plugins>
|
|
</psalm>
|
|
<!-- vim: set ts=4 sw=4 expandtab fenc=utf8 ff=unix tw=120: -->
|