studservis/php-cs-fixer-ruleset

StudService shared PHP style rules for PHP-CS-Fixer

Installs: 7 001

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: 2026-01-08 13:53:00 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);