<?php /** * This file represents the configuration for Code Sniffing PSR-2-related * automatic checks of coding guidelines * Install @fabpot's great php-cs-fixer tool via * * $ composer global require fabpot/php-cs-fixer * * And then simply run * * $ php-cs-fixer fix --config-file .php_cs * * inside the root directory. * * http://www.php-fig.org/psr/psr-2/ * http://cs.sensiolabs.org */ if (PHP_SAPI !== 'cli') { die('This script supports command line usage only. Please check your command.'); } // Define in which folders to search and which folders to exclude // Exclude some directories that are excluded by Git anyways to speed up the sniffing $finder = Symfony\CS\Finder\DefaultFinder::create() ->exclude('vendor') ->in(__DIR__); // Return a Code Sniffing configuration using // all sniffers needed for PSR-2 // and additionally: // - Remove leading slashes in use clauses. // - PHP single-line arrays should not have trailing comma. // - Single-line whitespace before closing semicolon are prohibited. // - Remove unused use statements in the PHP source code // - Ensure Concatenation to have at least one whitespace around // - Remove trailing whitespace at the end of blank lines. return Symfony\CS\Config\Config::create() ->level(Symfony\CS\FixerInterface::PSR2_LEVEL) ->fixers([ 'remove_leading_slash_use', 'single_array_no_trailing_comma', 'spaces_before_semicolon', 'unused_use', 'concat_with_spaces', 'whitespacy_lines', 'ordered_use', 'single_quote', 'duplicate_semicolon', 'extra_empty_lines', 'phpdoc_no_package', 'phpdoc_scalar', 'no_empty_lines_after_phpdocs' ]) ->finder($finder);
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
src | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
.editorconfig | File | 372 B | 0644 |
|
.gitignore | File | 48 B | 0644 |
|
.php_cs | File | 1.72 KB | 0644 |
|
.travis.yml | File | 442 B | 0644 |
|
CHANGELOG.md | File | 1.82 KB | 0644 |
|
CODE_OF_CONDUCT.md | File | 1.93 KB | 0644 |
|
CONTRIBUTING.md | File | 3.57 KB | 0644 |
|
COPYING | File | 11.08 KB | 0644 |
|
LICENSE | File | 10.02 KB | 0644 |
|
README.md | File | 4.95 KB | 0644 |
|
autoload.php | File | 1.08 KB | 0644 |
|
composer.json | File | 714 B | 0644 |
|
phpunit.xml.dist | File | 534 B | 0644 |
|