first commit

This commit is contained in:
2025-08-02 16:30:27 +02:00
commit 23646bfcee
14851 changed files with 1750626 additions and 0 deletions

34
.php-cs-fixer.shop.php Normal file
View File

@@ -0,0 +1,34 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in('admin');
if (file_exists('./include')) {
$finder->in('include');
}
if (file_exists('./bundles')) {
$finder->in('bundles');
}
if (file_exists('./app')) {
$finder->in('app');
}
if (file_exists('./src')) {
$finder->in('src');
}
$finder2 = PhpCsFixer\Finder::create()
->in('.')
->depth('== 0');
$files = new AppendIterator();
$files->append($finder->getIterator());
$files->append($finder2->getIterator());
$config = require_once __DIR__.'/.php-cs-fixer.config.php';
return $config
->setFinder($files)
->setCacheFile('./engine/.php-cs-fixer.shop.cache');