mnib-dev / coding-standard
Personal coding standards heavily based on Doctrine Coding Standard.
Installs: 3 103
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:phpcodesniffer-standard
Requires
- php: ^7.3 || ^8.0.2
- dealerdirect/phpcodesniffer-composer-installer: ^0.6.2 || ^0.7
- friendsofphp/php-cs-fixer: ^3.2.1
- slevomat/coding-standard: ^6.3 || ^7.0 || ^8.0
- squizlabs/php_codesniffer: ^3.6
README
Create a file named .php_cs.dist
with the contents:
<?php declare(strict_types=1); $finder = PhpCsFixer\Finder::create() ->in(__DIR__ . '/src') ->ignoreDotFiles(true) ->ignoreVCS(true) ->files() ->name('*.php') ; return (new MNIB\CsFixer\Config()) ->setFinder($finder) ->setRiskyAllowed(true) ->addRules([ 'declare_strict_types' => true, 'strict_comparison' => true, 'strict_param' => true, 'string_line_ending' => true, ]) ;