novactive/phpcs-novastandards

This package is abandoned and no longer maintained. No replacement package was suggested.

Novactive PHP_CodeSniffer coding standards for eZ Publish, Symfony2, ...

1.3.1 2015-02-27 16:11 UTC

This package is not auto-updated.

Last update: 2020-01-24 15:25:39 UTC


README

About

This package provides some PHP_CodeSniffer compliant coding standards, used at Novactive.

Build Status

Requirements

Note: the eZ Publish standard, from eZ Systems engineering team, had to be integrated to our package, as we are relying on it for our extended eZ Publish standard (there is no smart way to extend a custom standard for now)

Installation

With Composer

Add the dependency to your composer.json file :

"require-dev": {
    ...,
    "novactive/phpcs-novastandards": "~1.2"
}

Install it :

composer update novactive/phpcs-novastandards

Usage

CLI

From the sources ROOT directory of your project :

./vendor/bin/phpcs --standard=vendor/novactive/phpcs-novastandards/src/NovaPSR2" src

PHPStorm

Configure CodeSniffer

Open the PHPStorm Preferences / settings panel and go to the Code Sniffer section. You should define the value for parameter "PHP Code Sniffer (phpcs) path" for instance :

  • "wwwroot/bin/phpcs" for eZ Publish

  • "wwwroot/vendor/bin/phpcs" for other techno using composer

  • "~/.composer/vendor/bin/phpcs" if you installed CodeSniffer globally on your system using the command:

    php composer.phar global require squizlabs/php_codesniffer

PHP Code Sniffer path configuration window

Configure which standard to use

Open the PHPStorm Preferences / settings panel and go to the Inspections section. You should enable "PHP > PHP Code Sniffer validation" and fill in the path to required standard, for instance :

  • "vendor/novactive/phpcs-novastandards/src/NovaEZ" for eZ Publish
  • "vendor/novactive/phpcs-novastandards/src/NovaPSR2" for Symfony 2 and PSR2 compliant apps

PHP Code Sniffer standard configuration window

Bug and issues

The standards are still under active development. Expect bugs and "false negatives" when checking code. Feel free to report them on the issues section.

Credits

Thanks to :