Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.php_cs-fixer.dist.php')
-rw-r--r--.php_cs-fixer.dist.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/.php_cs-fixer.dist.php b/.php_cs-fixer.dist.php
new file mode 100644
index 00000000..f7bbdd81
--- /dev/null
+++ b/.php_cs-fixer.dist.php
@@ -0,0 +1,18 @@
+<?php
+
+declare(strict_types=1);
+
+require_once './vendor/autoload.php';
+
+use Nextcloud\CodingStandard\Config;
+
+$config = new Config();
+$config
+ ->getFinder()
+ ->ignoreVCSIgnored(true)
+ ->notPath('build')
+ ->notPath('l10n')
+ ->notPath('src')
+ ->notPath('vendor')
+ ->in(__DIR__);
+return $config;