Skip to content

Repository files navigation

specsnl/code-style

An ECS (Easy Coding Standards) codestyle package.

Installation

You can install the package via composer:

composer require --dev specsnl/code-style

Usage

Add a phpcs.xml file to the root of your project. The below config example is for a Laravel project:

phpcs.yml:

<?xml version="1.0"?>
<ruleset>
<description>A Laravel project coding standard</description>
<argname="extensions"value="php" />
<argname="report"value="full"/>
<argname="colors"/>
<argvalue="s"/> <!-- Show sniff codes in report -->
<argvalue="p"/> <!-- Show progress in report -->
<file>.</file>
<exclude-pattern>vendor</exclude-pattern>
<exclude-pattern>node_modules</exclude-pattern>
<exclude-pattern>.phpstan.cache</exclude-pattern>
<exclude-pattern>.phpunit.cache</exclude-pattern>
<exclude-pattern>bootstrap/cache</exclude-pattern>
<exclude-pattern>storage/framework</exclude-pattern>
<exclude-pattern>resources/css</exclude-pattern>
<exclude-pattern>resources/js</exclude-pattern>
<exclude-pattern>coverage</exclude-pattern>
<ruleref="SpecsCodingStandard"/>
</ruleset>

Using the PHPCSStandards plugin

The above config assumes you allowed installing the PHP_CodeSniffer plugin. Composer will prompt you to install it when you install this package. If you didn't, you can allow it by adding the following to your composer.json:

{
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

Annotated ruleset

The annotated ruleset.

About

An ECS (Easy Coding Standards) codestyle package.

Resources

Stars

0 stars

Watchers

2 watching

Forks

Releases

Used by

Contributors

Languages