chubbyphp / chubbyphp-dev-helper
A dev helper which provides coding standards and quality settings.
Installs: 92 566
Dependents: 36
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- friendsofphp/php-cs-fixer: ^3.40
This package is auto-updated.
Last update: 2024-10-10 20:21:42 UTC
README
Description
A dev helper which provides coding standards and quality settings.
Requirements
- php: ^8.1
- friendsofphp/php-cs-fixer: ^3.40
Installation
Through Composer as chubbyphp/chubbyphp-dev-helper.
composer require --dev chubbyphp/chubbyphp-dev-helper dev-master
Usage
PHP-CS-FIXER
<?php declare(strict_types=1); $finder = PhpCsFixer\Finder::create() ->files() ->name('*.php') ->in(__DIR__ . '/src') ->in(__DIR__ . '/tests') ; /** @var array $config */ $config = require __DIR__ . '/vendor/chubbyphp/chubbyphp-dev-helper/phpcs.php'; return (new PhpCsFixer\Config) ->setIndent($config['indent']) ->setLineEnding($config['lineEnding']) ->setRules($config['rules']) ->setRiskyAllowed($config['riskyAllowed']) ->setFinder($finder) ;
Copyright
2024 Dominik Zogg