composer update
This commit is contained in:
parent
f6abc3dce2
commit
71dfaca858
1753 changed files with 45274 additions and 14619 deletions
14
vendor/masterminds/html5/.php_cs.dist
vendored
Normal file
14
vendor/masterminds/html5/.php_cs.dist
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->in(__DIR__)
|
||||
;
|
||||
|
||||
return PhpCsFixer\Config::create()
|
||||
->setRules(array(
|
||||
'@Symfony' => true,
|
||||
'concat_space' => array('spacing' => 'one'),
|
||||
'phpdoc_annotation_without_dot' => false,
|
||||
))
|
||||
->setFinder($finder)
|
||||
;
|
||||
Reference in a new issue