<?xml version="1.0"?>
<ruleset name="Yoeunes coding standard">
    <description>Yoeunes coding standard</description>

    <arg name="colors"/>

    <!-- Pass some flags to PHPCS:
        p flag: Show progress of the run.
        s flag: Show sniff codes in all reports.
        n flag: ignore warnings.
    -->
    <arg value="psn"/>

    <!-- How many parallel processes to run -->
    <arg name="parallel" value="1" />

    <!-- Only check the PHP files are checked. -->
    <arg name="extensions" value="php"/>

    <!-- Check all files in the src directory and the directories below it. -->
    <file>src</file>

    <!-- inherit rules from PRS2 -->
    <rule ref="PSR2" />
</ruleset>
