First Commit

This commit is contained in:
GMrrc
2024-11-06 15:35:54 +01:00
commit 5a887f38dd
87 changed files with 1990 additions and 0 deletions

19
.php-cs-fixer.dist.php Normal file
View File

@ -0,0 +1,19 @@
<?php
declare(strict_types=1);
require_once './vendor-bin/cs-fixer/vendor/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->notPath('build')
->notPath('l10n')
->notPath('node_modules')
->notPath('src')
->notPath('vendor')
->in(__DIR__);
return $config;