Some checks failed
CodeQL Security Scanning / Analyze (actions) (push) Has been cancelled
CodeQL Security Scanning / Analyze (javascript) (push) Has been cancelled
CodeQL Security Scanning / Security Scan Summary (push) Has been cancelled
Repo Health / Access control (push) Has been cancelled
Repo Health / Release configuration (push) Has been cancelled
Repo Health / Scripts governance (push) Has been cancelled
Repo Health / Repository health (push) Has been cancelled
Standards Compliance / Secret Scanning (push) Has been cancelled
Standards Compliance / License Header Validation (push) Has been cancelled
Standards Compliance / Repository Structure Validation (push) Has been cancelled
Standards Compliance / Coding Standards Check (push) Has been cancelled
Standards Compliance / Version Consistency Check (push) Has been cancelled
Standards Compliance / Workflow Configuration Check (push) Has been cancelled
Standards Compliance / Documentation Quality Check (push) Has been cancelled
Standards Compliance / README Completeness Check (push) Has been cancelled
Standards Compliance / Git Repository Hygiene (push) Has been cancelled
Standards Compliance / Script Integrity Validation (push) Has been cancelled
Standards Compliance / Line Length Check (push) Has been cancelled
Standards Compliance / File Naming Standards (push) Has been cancelled
Standards Compliance / Insecure Code Pattern Detection (push) Has been cancelled
Standards Compliance / Code Complexity Analysis (push) Has been cancelled
Standards Compliance / Code Duplication Detection (push) Has been cancelled
Standards Compliance / Dead Code Detection (push) Has been cancelled
Standards Compliance / File Size Limits (push) Has been cancelled
Standards Compliance / Binary File Detection (push) Has been cancelled
Standards Compliance / TODO/FIXME Tracking (push) Has been cancelled
Standards Compliance / Dependency Vulnerability Scanning (push) Has been cancelled
Standards Compliance / Unused Dependencies Check (push) Has been cancelled
Standards Compliance / Broken Link Detection (push) Has been cancelled
Standards Compliance / API Documentation Coverage (push) Has been cancelled
Standards Compliance / Accessibility Check (push) Has been cancelled
Standards Compliance / Performance Metrics (push) Has been cancelled
Standards Compliance / Enterprise Readiness Check (push) Has been cancelled
Standards Compliance / Repository Health Check (push) Has been cancelled
Standards Compliance / Terraform Configuration Validation (push) Has been cancelled
Standards Compliance / Compliance Summary (push) Has been cancelled
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<!--
|
|
Joomla Extension Update Server XML
|
|
See: https://docs.joomla.org/Deploying_an_Update_Server
|
|
|
|
This file is the update server manifest for {{EXTENSION_NAME}}.
|
|
The Joomla installer polls this URL to check for new versions.
|
|
|
|
The manifest.xml in this repository must reference this file:
|
|
<updateservers>
|
|
<server type="extension" priority="1" name="{{EXTENSION_NAME}}">
|
|
https://git.mokoconsulting.tech/mokoconsulting-tech/MokoCassiopeia/raw/branch/main/updates.xml
|
|
</server>
|
|
<server type="extension" priority="2" name="{{EXTENSION_NAME}}">
|
|
https://raw.githubusercontent.com/mokoconsulting-tech/MokoCassiopeia/main/updates.xml
|
|
</server>
|
|
</updateservers>
|
|
|
|
When a new release is made, run `make release` or the release workflow to
|
|
prepend a new <update> entry to this file automatically.
|
|
-->
|
|
<updates>
|
|
<update>
|
|
<name>{{EXTENSION_NAME}}</name>
|
|
<description>MokoCassiopeia — Moko Consulting Joomla extension</description>
|
|
<element>{{EXTENSION_ELEMENT}}</element>
|
|
<type>{{EXTENSION_TYPE}}</type>
|
|
<version>{{VERSION}}</version>
|
|
<downloads>
|
|
<downloadurl type="full" format="zip">
|
|
https://git.mokoconsulting.tech/mokoconsulting-tech/MokoCassiopeia/releases/download/v{{VERSION}}/{{EXTENSION_ELEMENT}}.zip
|
|
</downloadurl>
|
|
<downloadurl type="full" format="zip">
|
|
https://github.com/mokoconsulting-tech/MokoCassiopeia/releases/download/v{{VERSION}}/{{EXTENSION_ELEMENT}}.zip
|
|
</downloadurl>
|
|
</downloads>
|
|
<targetplatform name="joomla" version="[56].*"/>
|
|
<php_minimum>8.1</php_minimum>
|
|
</update>
|
|
</updates> |