allow staff to access board forum
[fsfdrupalauth.git] / .php_cs.dist
CommitLineData
395539d7
AE
1<?php
2$finder = PhpCsFixer\Finder::create()
3 ->in([
4 __DIR__ . '/lib',
5 __DIR__ . '/tests',
6 ])
7;
8return PhpCsFixer\Config::create()
9 ->setRules([
10 '@PSR2' => true,
11 '@PSR4' => true,
12 '@PSR5' => true,
13 ])
14 ->setFinder($finder)
15;