dxw / php-cs-fixer-config
Installs: 58 714
Dependents: 11
Suggesters: 0
Security: 0
Stars: 1
Watchers: 14
Forks: 1
Open Issues: 3
Requires
- php: ^7.4||^8.1
- friendsofphp/php-cs-fixer: ^3.2
Requires (Dev)
- phpunit/phpunit: ^9.0
- vimeo/psalm: ^5.15
This package is auto-updated.
Last update: 2024-10-13 15:01:55 UTC
README
dxw's standard config for php-cs-fixer
Usage
Run this:
composer require --dev dxw/php-cs-fixer-config
Create .php-cs-fixer.php
with these contents:
<?php
$finder = \PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__);
return \Dxw\PhpCsFixerConfig\Config::create()
->setFinder($finder);
Upgrading from v1.0.0 to v2.0.0
- Rename the
.php_cs
file in your project to.php-cs-fixer.php
- Add
.php-cs-fixer.cache
to your project's.gitignore
file - Run
vendor/bin/php-cs-fixer fix -v
to confirm that the only remaining deprecation warning is "PhpCsFixer\Config::create is deprecated since 2.17 and will be removed in 3.0, use the constructor instead". If there are other deprecation warnings, address them now. - Update your project's
composer.json
file to usedxw/php-cs-fixer-config
version^2.0
, and runcomposer update