nexusphp / cs-config
A factory for custom rulesets for PHP CS Fixer.
Installs: 1 032 757
Dependents: 22
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- ext-tokenizer: *
- friendsofphp/php-cs-fixer: ^3.60
Requires (Dev)
- nexusphp/tachycardia: ^2.1
- phpstan/extension-installer: ^1.3
- phpstan/phpstan: ^1.10
- phpstan/phpstan-phpunit: ^1.3
- phpstan/phpstan-strict-rules: ^1.5
- phpunit/phpunit: ^10.5 || ^11.0
Conflicts
- liaison/cs-config: *
- 3.x-dev
- v3.24.3
- v3.24.2
- v3.24.1
- v3.24.0
- v3.23.1
- v3.23.0
- v3.22.1
- v3.22.0
- v3.21.0
- v3.20.0
- v3.19.0
- v3.18.0
- v3.17.0
- v3.16.0
- v3.15.0
- v3.14.4
- v3.14.3
- v3.14.2
- v3.14.1
- v3.14.0
- v3.13.0
- v3.12.0
- v3.11.0
- v3.10.0
- v3.9.0
- v3.8.0
- v3.7.0
- v3.6.0
- v3.5.0
- v3.4.0
- v3.3.4
- v3.3.3
- v3.3.2
- v3.3.1
- v3.3.0
- v3.2.2
- v3.2.1
- v3.2.0
- v3.1.1
- v3.1.0
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.2.1
- v2.2.0
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.2
- v2.0.1
- v2.0.0
This package is auto-updated.
Last update: 2024-10-07 12:58:23 UTC
README
This library provides a factory for custom rulesets for friendsofphp/php-cs-fixer
.
Installation
You can add this library as a local, per-project dependency to your project using Composer:
composer require nexusphp/cs-config
If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
composer require --dev nexusphp/cs-config
Configuration
- Create a
.php-cs-fixer.dist.php
at the root of your project:
<?php use Nexus\CsConfig\Factory; use Nexus\CsConfig\Ruleset\Nexus82; return Factory::create(new Nexus82())->forProjects();
- Include the cache file in your
.gitignore
. By default, the cache file will be saved in the project root.
vendor/ +# php-cs-fixer +.php-cs-fixer.php +.php-cs-fixer.cache
Advanced Configuration
Adding Preformatted License Header
You can create a preformatted license header to all PHP files by using the public forLibrary()
method
instead of forProjects()
. This method accepts two required arguments (the library name and author) and
two optional arguments (the email address and starting year of license).
- Scenario 1: Providing all arguments
<?php use Nexus\CsConfig\Factory; use Nexus\CsConfig\Ruleset\Nexus82; -return Factory::create(new Nexus82())->forProjects(); +return Factory::create(new Nexus82())->forLibrary('My Library', 'John Doe', 'john@doe.com', 2020);
This setting will configure a license header similar to below:
<?php /** * This file is part of My Library. * * (c) 2020 John Doe <john@doe.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Nexus\CsConfig;
- Scenario 2: Providing only the required arguments
If you opted not to provide any of the optional arguments (i.e., email address, starting license year), these will not be shown on the license header allowing flexibility on the copyright portion.
<?php use Nexus\CsConfig\Factory; use Nexus\CsConfig\Ruleset\Nexus82; -return Factory::create(new Nexus82())->forProjects(); +return Factory::create(new Nexus82())->forLibrary('My Library', 'John Doe');
This will give the following license header:
<?php /** * This file is part of My Library. * * (c) John Doe * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Nexus\CsConfig;
Overriding Rules in a Ruleset
If you feel that a specific rule in the ruleset is not appropriate for you, you can override it instead of creating a new ruleset:
<?php use Nexus\CsConfig\Factory; use Nexus\CsConfig\Ruleset\Nexus82; -return Factory::create(new Nexus82())->forProjects(); +return Factory::create(new Nexus82(), [ + 'binary_operator_spaces' => false, +])->forProjects();
Specifying Options to PhpCsFixer\Config
The Factory
class returns an instance of PhpCsFixer\Config
and fully supports all of
its properties setup. You can pass an array to the third parameter of Factory::create()
containing your desired options.
Options
<?php use Nexus\CsConfig\Factory; use Nexus\CsConfig\Ruleset\Nexus82; -return Factory::create(new Nexus82())->forProjects(); +return Factory::create(new Nexus82(), [], [ + 'usingCache' => false, + 'hideProgress => true, +])->forProjects();
Customization of Ruleset
What is the purpose of a configuration factory if not able to create a custom ruleset for an organization-wide usage, right? Well, you are not constrained to use the default rulesets and putting a long array of overrides. That's pretty nasty.
The way to achieve this is dependent on you but the main idea is creating a new ruleset that
extends Nexus\CsConfig\Ruleset\AbstractRuleset
. Yup, it's that easy. Then you just need to
provide details for its required four (4) protected properties.
<?php namespace MyCompany\CodingStandards\Ruleset; use Nexus\CsConfig\Ruleset\AbstractRuleset; final class MyCompany extends AbstractRuleset { public function __construct() { $this->name = 'My Company'; $this->rules = [ '@PSR2' => true, ... ]; $this->requiredPHPVersion = 80200; $this->autoActivateIsRiskyAllowed = true; } }
Then, in creating your .php-cs-fixer.dist.php
, use your own ruleset.
<?php use Nexus\CsConfig\Factory; use MyCompany\CodingStandards\Ruleset\MyCompany; return Factory::create(new MyCompany())->forProjects();
Credits
This project is inspired by and an enhancement of ergebnis/php-cs-fixer-config
.
Contributing
Contributions are very much welcome. If you see an improvement or bugfix, open a PR now!