mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
25 lines
746 B
PHP
25 lines
746 B
PHP
<?php
|
|
|
|
require __DIR__.'/vendor/autoload.php';
|
|
require __DIR__.'/bootstrap/app.php';
|
|
|
|
return (new \Jubeki\LaravelCodeStyle\Config())
|
|
->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect())
|
|
->setFinder(
|
|
PhpCsFixer\Finder::create()
|
|
->in(app_path())
|
|
->in(config_path())
|
|
->in(database_path())
|
|
->notPath(database_path('migrations'))
|
|
->in(base_path('lang'))
|
|
->in(base_path('routes'))
|
|
->in(base_path('tests'))
|
|
->in(base_path('Blacklight'))
|
|
->in(base_path('misc'))
|
|
->notName('IRCClient.php')
|
|
->notName('NNTP.php')
|
|
->notName('*.blade.php')
|
|
)
|
|
->setRules([
|
|
]);
|