<?php $finder = PhpCsFixer\Finder::create() ->exclude('somedir') ->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php') ->in(__DIR__) ; return PhpCsFixer\Config::create() ->setRules(array( '@PSR2' => true, 'strict_param' => true, 'array_syntax' => array('syntax' => 'short'), )) ->setFinder($finder) ; 変更点 UPGRADEにわかりやすく書いてあります。 https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/