Migrate configuration file for PHP CS Fixer 2.19/3.0

This commit is contained in:
Alexander M. Turek 2021-05-15 21:29:53 +02:00
parent dffdc71adb
commit 1462a3215e
2 changed files with 5 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,7 +1,8 @@
vendor/ vendor/
composer.lock composer.lock
phpunit.xml phpunit.xml
.php_cs.cache .php-cs-fixer.cache
.php-cs-fixer.php
.phpunit.result.cache .phpunit.result.cache
composer.phar composer.phar
package.tar package.tar

View File

@ -4,7 +4,7 @@ if (!file_exists(__DIR__.'/src')) {
exit(0); exit(0);
} }
return PhpCsFixer\Config::create() return (new PhpCsFixer\Config())
->setRules([ ->setRules([
'@PHP71Migration' => true, '@PHP71Migration' => true,
'@PHPUnit75Migration:risky' => true, '@PHPUnit75Migration:risky' => true,
@ -14,7 +14,7 @@ return PhpCsFixer\Config::create()
]) ])
->setRiskyAllowed(true) ->setRiskyAllowed(true)
->setFinder( ->setFinder(
PhpCsFixer\Finder::create() (new PhpCsFixer\Finder())
->in(__DIR__.'/src') ->in(__DIR__.'/src')
->append([__FILE__]) ->append([__FILE__])
->notPath('#/Fixtures/#') ->notPath('#/Fixtures/#')
@ -39,4 +39,5 @@ return PhpCsFixer\Config::create()
->notPath('Symfony/Component/Debug/Tests/DebugClassLoaderTest.php') ->notPath('Symfony/Component/Debug/Tests/DebugClassLoaderTest.php')
->notPath('Symfony/Component/ErrorHandler/Tests/DebugClassLoaderTest.php') ->notPath('Symfony/Component/ErrorHandler/Tests/DebugClassLoaderTest.php')
) )
->setCacheFile('.php-cs-fixer.cache')
; ;