1<?php
2
3$config = PhpCsFixer\Config::create();
4$config->getFinder()
5    ->exclude('vendor')
6    ->in(__DIR__);
7$config->setRules([
8    '@PSR1' => true,
9    '@Symfony' =>true
10]);
11
12return $config;