Public Access
033e948c79
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 1s
Generic: Repo Health / Site Health (pull_request) Has been skipped
Universal: PR Check / Branch Policy (pull_request) Failing after 2s
Generic: Repo Health / Access control (pull_request) Successful in 2s
Universal: PR Check / Validate PR (pull_request) Failing after 7s
Universal: Security Audit / Dependency Audit (pull_request) Successful in 7s
Universal: Auto Version Bump / Version Bump (push) Successful in 14s
Platform: mokoplatform CI / Gate 1: Code Quality (pull_request) Failing after 1m8s
Generic: Repo Health / Scripts governance (push) Has been cancelled
Generic: Repo Health / Repository health (push) Has been cancelled
Generic: Repo Health / Report Issues (push) Has been cancelled
Platform: mokoplatform CI / Gate 2: Unit Tests (8.1) (pull_request) Has been cancelled
Platform: mokoplatform CI / Gate 2: Unit Tests (8.2) (pull_request) Has been cancelled
Platform: mokoplatform CI / Gate 2: Unit Tests (8.3) (pull_request) Has been cancelled
Platform: mokoplatform CI / Gate 3: Self-Health Check (pull_request) Has been cancelled
Platform: mokoplatform CI / Gate 4: Governance (pull_request) Has been cancelled
Platform: mokoplatform CI / Gate 5: Template Integrity (pull_request) Has been cancelled
Platform: mokoplatform CI / CI Summary (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
Generic: Repo Health / Scripts governance (pull_request) Has been cancelled
Generic: Repo Health / Repository health (pull_request) Has been cancelled
Generic: Repo Health / Report Issues (pull_request) Has been cancelled
- Add `security:advisories` command — cross-repo CVE scanner via composer audit with checkpoint resumability, severity filtering, and auto-issue creation - Rewrite `manifest:read` to use Gitea manifest API as primary source with auto-detection fallback from source tree (no more manifest.xml dependency) - Rename MokoStandards namespace → MokoCli across all files - Rename MokoEnterprise namespace → MokoCli across all files - Rename MokoStandardsParser class → ManifestParser - Fix composer.json autoload paths: src/ → source/
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
# Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# PHPStan configuration for Dolibarr module repositories.
|
|
# Extends the base MokoCli config and adds Dolibarr class stubs
|
|
# so PHPStan can resolve CommonObject, DoliDB, Conf, User, etc.
|
|
# without requiring a full Dolibarr installation.
|
|
|
|
parameters:
|
|
level: 5
|
|
|
|
paths:
|
|
- src
|
|
|
|
excludePaths:
|
|
- vendor
|
|
- node_modules
|
|
|
|
# Dolibarr class stubs — resolved via the enterprise package from vendor/
|
|
stubFiles:
|
|
- vendor/mokoconsulting-tech/enterprise/templates/stubs/dolibarr.php
|
|
|
|
# Suppress errors that are structural in Dolibarr's dynamic architecture
|
|
ignoreErrors:
|
|
# Dolibarr uses dynamic properties heavily (pre-PHP 8.2 pattern)
|
|
- '#Access to an undefined property [A-Za-z]+::\$#'
|
|
# Module descriptors use magic property assignment in __construct
|
|
- '#Variable \$[a-z]+ might not be defined\.#'
|
|
|
|
# Common Dolibarr globals declared at script entry point
|
|
dynamicConstantNames:
|
|
- DOL_DOCUMENT_ROOT
|
|
- DOL_URL_ROOT
|
|
- DOL_VERSION
|
|
- MAIN_DB_PREFIX
|
|
|
|
reportUnmatchedIgnoredErrors: false
|
|
checkMissingIterableValueType: false
|
|
checkGenericClassInNonGenericObjectType: false
|