Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,20 @@ Vrij en open source onder de EUPL-licentie.
<author mail="info@conduction.nl" homepage="https://www.conduction.nl/">Conduction</author>
<namespace>SoftwareCatalog</namespace>
<documentation>
<user>https://codeberg.org/Conduction/softwarecatalog</user>
<admin>https://codeberg.org/Conduction/softwarecatalog</admin>
<developer>https://codeberg.org/Conduction/softwarecatalog</developer>
<user>https://github.com/ConductionNL/stackiq</user>
<admin>https://github.com/ConductionNL/stackiq</admin>
<developer>https://github.com/ConductionNL/stackiq</developer>
</documentation>
<category>organization</category>
<category>tools</category>
<category>integration</category>
<website>https://codeberg.org/Conduction/softwarecatalog</website>
<bugs>https://codeberg.org/Conduction/softwarecatalog/issues</bugs>
<repository>https://codeberg.org/Conduction/softwarecatalog</repository>
<website>https://github.com/ConductionNL/stackiq</website>
<bugs>https://github.com/ConductionNL/stackiq/issues</bugs>
<repository>https://github.com/ConductionNL/stackiq</repository>

<screenshot>https://codeberg.org/Conduction/softwarecatalog/raw/branch/main/img/screenshot-dashboard.png</screenshot>
<screenshot>https://codeberg.org/Conduction/softwarecatalog/raw/branch/main/img/screenshot-applications.png</screenshot>
<screenshot>https://codeberg.org/Conduction/softwarecatalog/raw/branch/main/img/screenshot-connections.png</screenshot>
<screenshot>https://raw.githubusercontent.com/ConductionNL/stackiq/main/img/screenshot-dashboard.png</screenshot>
<screenshot>https://raw.githubusercontent.com/ConductionNL/stackiq/main/img/screenshot-applications.png</screenshot>
<screenshot>https://raw.githubusercontent.com/ConductionNL/stackiq/main/img/screenshot-connections.png</screenshot>

<dependencies>
<!--
Expand Down
17 changes: 6 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@
</projectFiles>
<stubs>
<file name="vendor/nextcloud/ocp/OCP/Capabilities/ICapability.php" preloadClasses="true" />
<!--
OpenRegister's data-access contract — same reasoning as the decidesk
event stubs below: a sibling Nextcloud app supplies it at runtime, so
it is absent from the analysis path.

It USED to resolve, because hydra-gates declared
`OCA\OpenRegister\Contract\` as a psr-4 prefix. That was a bug — the
prefix is longer than openregister's own, so a vendored copy in any
app defined the contract for the whole process — and v1.9.0 removed
it (ConductionNL/.github#531). The runtime side is handled by the
guarded require in this app's test bootstrap; psalm never runs that,
so it needs the shape declared here instead. 213 UndefinedClass
errors without it.
-->
<file name="vendor/conduction/hydra-gates/hydra-gates/contracts/ObjectServiceInterface.php" />
<file name="vendor/conduction/hydra-gates/hydra-gates/contracts/ObjectEntityInterface.php" />
<!-- decidesk decision-event contract (DecisionRequestedEvent +
DecisionConcludedEvent). decidesk is a sibling Nextcloud app, not a
Composer dependency, so it is absent from the analysis path. The
Expand Down
Loading