<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="IziPHP">
    <description>The coding standard for IziPHP.</description>

    <file>src</file>

    <arg name="colors" />
    <arg value="p" />
    <arg name="report" value="full" />

    <arg name="basepath" value="." />
    <arg name="extensions" value="php" />

    <ini name="memory_limit" value="512M" />

    <rule ref="PSR1" />
    <rule ref="PSR12" />

    <!-- Run against the PHPCompatibility ruleset -->
    <rule ref="PHPCompatibility" />

    <!-- Check for cross-version support for PHP 8.1 and higher. -->
    <config name="testVersion" value="8.1-" />
    <config name="installed_paths" value="vendor/phpcompatibility/php-compatibility" />
</ruleset>