2025-11-04

This commit is contained in:
gcch 2025-11-04 13:21:41 +01:00
commit 0da56ea07f
1624 changed files with 5560 additions and 1923 deletions

8
.php-cs-fixer.dist.php Normal file
View file

@ -0,0 +1,8 @@
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = (new Finder())->in(__DIR__)->exclude(['vendor', 'web/vendor', 'web/wp', 'web/app/languages', 'web/app/plugins', 'web/app/mu-plugins']);
return (new Config())->setRules(['@PhpCsFixer' => true])->setFinder($finder);