innmind/static-analysis

Meta package to group all dependencies required for innmind packages

Maintainers

👁 Baptouuuu

Package info

github.com/Innmind/static-analysis

Homepage

Issues

pkg:composer/innmind/static-analysis

Statistics

Installs: 76 043

Dependents: 64

Suggesters: 0

Stars: 0

1.3.0 2026-01-11 14:56 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 446e8fcbf3506557662fb6c096f9179acc73f9cb

  • Baptiste Langlade <baptiste.langlade.woop@hey.com>

static analysis

This package is auto-updated.

Last update: 2026-06-15 13:28:00 UTC


README

This is a meta package to alias all the dependencies required for Innmind packages to run static analysis.

Installation

composer require --dev innmind/static-analysis

Usage

Once the package is required you need to create the file psalm.xml with the following content:

<?xml version="1.0"?>
<psalm
 errorLevel="1"
 resolveFromConfigFile="true"
 findUnusedBaselineEntry="true"
 findUnusedCode="false"
 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"
>
 <projectFiles>
 <directory name="src" />
 <ignoreFiles>
 <directory name="vendor" />
 </ignoreFiles>
 </projectFiles>
</psalm>