abook_carddav_squirrelmail/vendor/sabre/xml/.php_cs.dist
2021-05-28 18:10:43 +02:00

12 lines
No EOL
194 B
PHP

<?php
$config = PhpCsFixer\Config::create();
$config->getFinder()
->exclude('vendor')
->in(__DIR__);
$config->setRules([
'@PSR1' => true,
'@Symfony' => true
]);
return $config;