Add syntax checking and PHPUnit to Travis

This commit is contained in:
Niklas Keller
2016-03-23 11:21:21 +01:00
parent e47eb9c636
commit 5e0d126834
3 changed files with 43 additions and 0 deletions

15
.php_cs Normal file
View File

@@ -0,0 +1,15 @@
<?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__ . "/bin")
->in(__DIR__ . "/src")
->in(__DIR__ . "/test")
);