| Package Data | |
|---|---|
| Maintainer Username: | AntonioCarlosRibeiro | 
| Maintainer Contact: | acr@antoniocarlosribeiro.com (Antonio Carlos Ribeiro) | 
| Package Create Date: | 2014-12-06 | 
| Package Last Update: | 2021-12-20 | 
| Language: | PHP | 
| License: | BSD-3-Clause | 
| Last Refreshed: | 2025-10-29 03:03:46 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 110,622 | 
| Monthly Downloads: | 125 | 
| Daily Downloads: | 9 | 
| Total Stars: | 235 | 
| Total Watchers: | 6 | 
| Total Forks: | 32 | 
| Total Open Issues: | 13 | 
Your source code will be checked for PSR-1 & the Laravel "flavor" of PSR-2.
Clone this repository
git clone http://github.com/antonioribeiro/laravelcs LaravelCodeSniffer
Execute CodeSniffer
phpcs --standard=LaravelCodeSniffer/Standards/Laravel/  /path/to/your/project/files
The recommended way is to install it globally with the following command:
composer global require pragmarx/laravelcs
Make sure you have ~/.composer/vendor/bin/ in your PATH.
You will then be able to run PHP Code Sniffer with the Laravel Standard:
phpcs --standard=$HOME/.composer/vendor/pragmarx/laravelcs/Standards/Laravel/ /path/to/your/project/files
This Sniff was tested using the Laravel Framework source code and some changes, to comply with PSR-2, were required, click here to see them. Those were the violations found and fixed in Filesystem.php:
 --------------------------------------------------------------------------------
 FOUND 14 ERRORS AFFECTING 11 LINES
 --------------------------------------------------------------------------------
   29 | ERROR | [x] Inline control structures are not allowed
   44 | ERROR | [x] Inline control structures are not allowed
  113 | ERROR | [x] Expected 1 new line after closing parenthesis; found " "
  113 | ERROR | [x] Expected 1 newline after opening brace; 0 found
  113 | ERROR | [x] Inline control structures are not allowed
  113 | ERROR | [x] Closing brace must be on a line by itself
  241 | ERROR | [x] Inline control structures are not allowed
  247 | ERROR | [ ] Opening brace should be on the same line as the declaration
  249 | ERROR | [x] Closing brace indented incorrectly; expected 2 spaces, found 3
  310 | ERROR | [x] Inline control structures are not allowed
  335 | ERROR | [x] Inline control structures are not allowed
  343 | ERROR | [x] Inline control structures are not allowed
  361 | ERROR | [x] Inline control structures are not allowed
  384 | ERROR | [x] Inline control structures are not allowed
 --------------------------------------------------------------------------------
 PHPCBF CAN FIX THE 13 MARKED SNIFF VIOLATIONS AUTOMATICALLY
 --------------------------------------------------------------------------------
There are probably still a lot to do here, so please, open issues and send pull requests.