<?php

$finder = PhpCsFixer\Finder::create()
    ->exclude('vendor')
    ->in(__DIR__)
;

$config = new PhpCsFixer\Config();
return $config->setRules([
        '@Symfony' => true,
        '@DoctrineAnnotation' => true,
        'array_indentation' => true,
    ])
    ->setFinder($finder)
;