friendica-addons/advancedcontentfilter/vendor/fxp/composer-asset-plugin/.php_cs.dist

15 lines
301 B
PHP

<?php
return PhpCsFixer\Config::create()
->setRules(array(
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => array('syntax' => 'long'),
))
->setRiskyAllowed(true)
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__)
)
;