diff --git a/.php_cs.dist b/.php_cs.dist index e7351a67..f0f8c35f 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -4,7 +4,7 @@ use PhpCsFixer\Config; use Symfony\Component\Finder\Finder; $finder = new Finder(); -$finder->files()->in('src')->in('src'); +$finder->files()->in('app/src')->in('app/tests'); return Config::create() ->setRules([ diff --git a/phpstan.neon b/phpstan.neon index 866b55f5..505ac39a 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,6 +1,6 @@ parameters: level: 7 paths: - - src + - app/src includes: - vendor/phpstan/phpstan-deprecation-rules/rules.neon diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 842fcf1d..c31ed6f8 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -7,7 +7,7 @@ stopOnFailure="true"> - tests + app/tests