Download the PHP package socialengine/sniffer-rules without Composer
On this page you can find all versions of the php package socialengine/sniffer-rules. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download socialengine/sniffer-rules
More information about socialengine/sniffer-rules
Files in socialengine/sniffer-rules
Package sniffer-rules
Short Description A Lumen 5 and Laravel 5 SquizLabs Code Sniffer 2.0 artisan command. Detect violations of a defined coding standard. It helps your code remains clean and consistent.
License MIT
Homepage https://github.com/socialengine/sniffer-rules
Informations about the package sniffer-rules
phpcs 2.0+ Laravel 5, Lumen 5 Command
This is a Laravel 5 package that hooks up SquizLabs CodeSniffer 2 into Laravel-based apps. It can also be used manually, so read on.
Detect violations of a defined coding standard. It helps your code remain clean and consistent. Available options are: PSR2, PSR1, Zend, PEAR, Squiz, PHPCS and SocialEngine.
Setup
Require this package in composer:
Laravel 5
In your config/app.php
add 'SocialEngine\SnifferRules\ServiceProvider'
to $providers
array:
Laravel 5: Publish the configuration file
Manual
Install our Standard by configuring PHP_CodeSniffer to look for it.
Usage
Laravel
To run the sniffer in a CI environment, the -n
option should be set to remove
interaction:
Manual
It's encouraged to add a Makefile
to your project that makes it
trivial for other developers. Use Makefile
in this directory and adjust as
needed to fit your project requirements.
Travis
In combination with the Makefile
, Travis has issues finding the
standard, we had to add a before_script
to make it work. See
Unum repo for example.
SocialEngine Coding Standards
Coding standards
Addendum and Clarifications
namespace
should be on the same line as opening php tag. e.g.:<?php namespace SocialEngine\Amazing
- Property names should be camelCase
- Test names should use underscores, not camelCase. e.g.:
test_cats_love_catnip
License
MIT
All versions of sniffer-rules with dependencies
illuminate/support Version ~4.0|~5.0
illuminate/console Version ~4.0|~5.0
squizlabs/php_codesniffer Version 2.*