nicodinus / php-cs-fixer-config
Installs: 20
Dependents: 5
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:lib
Requires
- php: >=7.4
- friendsofphp/php-cs-fixer: ^3.10
This package is auto-updated.
Last update: 2025-03-24 21:36:05 UTC
README
Installation
composer require --dev nicodinus/php-cs-fixer-config
Usage
Configuration
Create a configuration file .php-cs-fixer.dist
in the root of the project:
<?php $config = new Nicodinus\lib\Config(); $config->getFinder() ->in(__DIR__ . '/lib') ->in(__DIR__ . '/test'); $cacheDir = \getenv('TRAVIS') ? \getenv('HOME') . '/.php-cs-fixer' : __DIR__; $config->setCacheFile($cacheDir . '/.php_cs.cache'); return $config;
Git
Add .php_cs.cache
(the cache file used by php-cs-fixer
) to .gitignore
:
/vendor
/.idea
/composer.lock
/.php_cs.cache
/.phpunit.result.cache