Files
Patrick NiebelingandClaude Sonnet 5 6da1a442a6
Lint info.xml / xml-lint (push) Successful in 14s
Lint PHP / php-lint (8.2) (push) Successful in 44s
Lint PHP / php-lint (8.3) (push) Successful in 35s
Lint PHP / php-lint (8.4) (push) Successful in 38s
PHPUnit / unit-tests (push) Successful in 41s
Fix composer platform override blocking CI dependency resolution
config.platform.php was pinned to 8.2, but nextcloud/ocp:dev-master
requires PHP 8.3+, so Composer failed to resolve even though the
runner's actual PHP (8.3.33) satisfies it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-13 10:17:58 +02:00

32 lines
815 B
JSON

{
"name": "pniebeling/workflow_deck_automation",
"description": "Automates moving overdue Deck cards between stacks, configurable per user, via Deck's own internal classes.",
"license": "AGPL-3.0-or-later",
"type": "project",
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"OCA\\WorkflowDeckAutomation\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\WorkflowDeckAutomation\\Tests\\": "tests/"
}
},
"require-dev": {
"nextcloud/ocp": "dev-master",
"nextcloud/coding-standard": "^1.3",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"lint": "find lib tests -name '*.php' -print0 | xargs -0 -n1 -- php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"test:unit": "phpunit --testsuite unit"
}
}