<?php
$header = <<<'EOF'
This file is part of the AuthStack project.

(c) Buckhill Ltd <development@buckhill.co.uk>

This source file is subject to the Buckhill license that is bundled
with this source code in the file LICENSE.
EOF;

return PhpCsFixer\Config::create()
    ->setRiskyAllowed(true)
    ->setRules(array(

        'header_comment' => array('header' => $header),

    ))

;