chubbyphp/chubbyphp-dev-helper

A dev helper which provides coding standards and quality settings.

dev-master 2024-01-01 15:27 UTC

This package is auto-updated.

Last update: 2024-03-30 15:58:37 UTC


README

Total Downloads Monthly Downloads Latest Stable Version Latest Unstable Version

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