Ports the standalone due-date cron script into a proper Nextcloud 34 app with a personal-settings UI, per-user workflow configuration (source/target stack, assigned-user and label filters, email notification), a TimedJob background runner, and Gitea CI pipelines. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
14 lines
257 B
PHP
14 lines
257 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Nextcloud\CodingStandard\Config;
|
|
|
|
$config = new Config();
|
|
$config->getFinder()
|
|
->in(__DIR__)
|
|
->exclude(['vendor', 'node_modules', 'js', 'build', 'l10n']);
|
|
$config->setCacheFile('.php-cs-fixer.cache');
|
|
|
|
return $config;
|