mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-02 16:29:49 -05:00
22 lines
571 B
PHP
22 lines
571 B
PHP
<?php
|
|
|
|
require __DIR__.'/vendor/autoload.php';
|
|
require __DIR__.'/bootstrap/app.php';
|
|
|
|
return (new MattAllan\LaravelCodeStyle\Config())
|
|
->setFinder(
|
|
PhpCsFixer\Finder::create()
|
|
->in(app_path())
|
|
->in(config_path())
|
|
->in(database_path('factories'))
|
|
->in(database_path('seeds'))
|
|
->in(resource_path('lang'))
|
|
->in(base_path('routes'))
|
|
->in(base_path('tests'))
|
|
)
|
|
->setRules([
|
|
'@Laravel' => true,
|
|
'@Laravel:risky' => true,
|
|
])
|
|
->setRiskyAllowed(true);
|