22 строки
471 B
PHP
22 строки
471 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
// SPDX-FileCopyrightText: Sami Finnilä <sami.finnila@nextcloud.com>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
require_once './vendor/autoload.php';
|
|
require_once './vendor-bin/php-cs-fixer/vendor/autoload.php';
|
|
|
|
use Nextcloud\CodingStandard\Config;
|
|
|
|
$config = new Config();
|
|
$config
|
|
->getFinder()
|
|
->ignoreVCSIgnored(true)
|
|
->notPath('build')
|
|
->notPath('l10n')
|
|
->notPath('src')
|
|
->notPath('vendor')
|
|
->in(__DIR__);
|
|
return $config;
|