myonlinestore/coding-standard

MyOnlineStore Coding Standard

Installs: 134 856

Dependents: 14

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 0

Type:phpcodesniffer-standard

4.0.2 2022-11-28 08:38 UTC

This package is auto-updated.

Last update: 2024-03-28 11:27:01 UTC


README

Install

Install the package with composer:

composer require myonlinestore/coding-standard --dev

Configure

Add the ruleset to your phpcs.xml.dist file:

<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"
>
    <arg name="basepath" value="."/>
    <arg name="extensions" value="php"/>
    <arg name="parallel" value="80"/>
    <arg name="cache" value=".phpcs-cache"/>
    <arg name="colors"/>
    <arg value="nps"/>

    <file>src</file>
    <file>tests</file>

    <rule ref="MyOnlineStore"/>
</ruleset>

Unused Doctrine fields

If your code has entities with fields without accessors, you could disable the unused elements inspection:

<rule ref="MyOnlineStore">
    <exclude name="SlevomatCodingStandard.Classes.UnusedPrivateElements"/>
</rule>