1
0
mirror of https://github.com/danog/process.git synced 2025-01-23 06:11:34 +01:00
process/.php_cs

15 lines
282 B
Plaintext
Raw Normal View History

<?php
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::NONE_LEVEL)
->fixers([
"psr2",
"-braces",
"-psr0",
])
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__)
->exclude(__DIR__."/vendor")
)
;