Skip to content

PHP CodeSniffer for CakePHP - Added more sniffs based on CakePHP Conventions and built over the original http://www.sanisoft.com/downloads/cakephp_sniffs/.

Notifications You must be signed in to change notification settings

evilbloodydemon/Cake_PHP_CodeSniffer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PHP CodeSniffer for CakePHP

This repository contains the CakePHP standard for use with the pear package PHP CodeSniffer

Installation

Obviously, you need PHP CodeSniffer for this repository to have any meaning.

Locate the CodeSniffer/Standards folder in your CodeSniffer install, and install this repository with the name "Cake" e.g.:

cd <PEAR>/PHP/CodeSniffer/Standards/
git clone git://github.com/evilbloodydemon/Cake_PHP_CodeSniffer.git Cake

If you work mainly with CakePHP, or your work simply follows the same coding standards, you may wish to configure PHP Code Sniffer to use this standard by default:

phpcs --config-set default_standard Cake

Use as a git pre-commit hook

To run phpcs checks each time you commit a file, you can use the pre-commit hook provided in this repo. For example

(linux)
cd /var/www/apps/myapp/.git/hooks/
cp /usr/share/pear/PHP/CodeSniffer/Standards/Cake/pre-commit .
chmod +x pre-commit

(windows)
cd <YOUR_PROJECT/.git/hooks
mklink pre-commit <PEAR>\PHP\CodeSniffer\Standards\Cake\pre-commit

References and Credits

About

PHP CodeSniffer for CakePHP - Added more sniffs based on CakePHP Conventions and built over the original http://www.sanisoft.com/downloads/cakephp_sniffs/.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 93.3%
  • Shell 6.7%