1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Enhancement: Run friendsofphp/php-cs-fixer on GitHub Actions

Co-authored-by: Markus Staab <maggus.staab@googlemail.com>

Closes GH-559.
This commit is contained in:
Andreas Möller
2022-07-11 19:19:15 +02:00
committed by GitHub
parent e45bf2b782
commit d3b6b3ed67
7 changed files with 2181 additions and 2 deletions

14
.php-cs-fixer.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
$finder = PhpCsFixer\Finder::create()->in(__DIR__);
$config = new PhpCsFixer\Config();
$finder = $config->getFinder()
->ignoreDotFiles(false)
->in(__DIR__)
->name(__FILE__);
$config->setRules([]);
return $config;