Update PHPCS and other dependencies.

This commit is contained in:
Dane Everitt 2017-11-05 13:33:42 -06:00
parent 82b7bff7f7
commit 30ab6ed692
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
5 changed files with 266 additions and 146 deletions

View file

@ -24,6 +24,7 @@ return PhpCsFixer\Config::create()
'concat_space' => ['spacing' => 'one'],
'declare_equal_normalize' => ['space' => 'single'],
'heredoc_to_nowdoc' => true,
'increment_style' => ['style' => 'post'],
'linebreak_after_opening_tag' => true,
'method_argument_space' => [
'ensure_fully_multiline' => false,
@ -45,4 +46,10 @@ return PhpCsFixer\Config::create()
'psr4' => true,
'random_api_migration' => true,
'standardize_not_equals' => true,
'ternary_to_null_coalescing' => true,
'yoda_style' => [
'equal' => false,
'identical' => false,
'less_and_greater' => false,
]
])->setRiskyAllowed(true)->setFinder($finder);