2025-11-04

This commit is contained in:
gcch 2025-11-04 13:21:41 +01:00
commit 40837e5a88
1339 changed files with 5462 additions and 1874 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);