studservis/php-cs-fixer-ruleset

StudService shared PHP style rules for PHP-CS-Fixer

Installs: 6 862

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

pkg:composer/studservis/php-cs-fixer-ruleset

0.0.3 2024-05-08 09:52 UTC

This package is auto-updated.

Last update: 2025-12-08 13:39:01 UTC


README

Install

composer require --dev studservis/php-cs-fixer-ruleset

Usage

<?php
// .php-cs-fixer.dist.php

$finder = PhpCsFixer\Finder::create()
    ->in([
        './application/',
        './tests/'
       );

$overridedProjectRules = [...];

return \StudService\PhpCsFixer\build_config($finder, $overridedProjectRules);