2a06261f75
This adds a composer.json for all dependencies that are available
15 lines
288 B
PHP
15 lines
288 B
PHP
<?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)
|
|
;
|