mirror of
https://github.com/nextcloud/app_api.git
synced 2026-01-13 20:19:21 +00:00
Changes: - [x] removed last_response_time and related functions - [x] renamed last_response_time->last_check_time usage (getExApps) in nc_py_api @bigcat88 - [x] added docker container healthcheck before heartbeat exApp in deployment process @andrey18106 - [x] added php lint, cs, psalm, security cheks ci @andrey18106 - [x] reviewed caches usage - [x] reviewed exception handling and logging - [x] added ci for tests with redis - [x] php-cs fixes --------- Signed-off-by: Alexander Piskun <bigcat88@icloud.com> Co-authored-by: Alexander Piskun <bigcat88@icloud.com>
19 lines
293 B
PHP
19 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once './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;
|