You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.8 KiB
66 lines
2.8 KiB
<?xml version="1.0" encoding="UTF-8" ?> |
|
<phpdocumentor |
|
configVersion="3" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xmlns="https://www.phpdoc.org" |
|
xsi:noNamespaceSchemaLocation="https://docs.phpdoc.org/latest/phpdoc.xsd" |
|
> |
|
<paths> |
|
<output>{{ directory.output }}</output> |
|
<cache>{{ directory.cache }}</cache> |
|
</paths> |
|
<title>{{ title|e('html') }}</title> |
|
<version number="latest"> |
|
|
|
<api format="php"> |
|
<source dsn="{{ directory.input }}"> |
|
<path>.</path> |
|
</source> |
|
<output>api</output> |
|
<ignore hidden="true" symlinks="true"> |
|
<path>**/tests/**/*</path> |
|
<path>**/lang/**/*</path> |
|
<path>**/lib/**/*</path> |
|
<path>**/docs/**/*</path> |
|
<path>config/**/*</path> |
|
<path>IMG/**/*</path> |
|
<path>local/**/*</path> |
|
<path>tmp/**/*</path> |
|
<path>squelettes-dist/**/*</path> |
|
</ignore> |
|
<!-- default-package-name>...</default-package-name --> |
|
<!-- include-source>true</include-source --> |
|
<markers> |
|
<marker>TODO</marker> |
|
<marker>FIXME</marker> |
|
</markers> |
|
</api> |
|
{% if package.rst_directory %} |
|
<guide format="rst"> |
|
<source dsn="{{ directory.input }}"> |
|
<path>{{ package.rst_directory }}</path> |
|
</source> |
|
<output>guide</output> |
|
</guide> |
|
{% endif %} |
|
</version> |
|
|
|
<setting name="package.prefix" value="{{ package.prefix }}"/> |
|
<setting name="package.slogan" value="{{ package.slogan|e('html_attr') }}"/> |
|
<setting name="package.description" value="{{ package.description|e('html_attr') }}"/> |
|
<setting name="package.presentation" value="{{ package.presentation|e('html_attr') }}"/> |
|
<setting name="package.version" value="{{ package.version }}"/> |
|
<setting name="package.branch" value="{{ git.branch }}"/> |
|
<setting name="package.revision" value="{{ git.commit }}"/> |
|
<setting name="package.url_package" value="{{ package.url_package }}"/> |
|
<setting name="package.url_documentation" value="{{ package.url_documentation }}"/> |
|
<setting name="package.url_development" value="{{ package.url_development }}" /> |
|
<setting name="package.url_repository" value="{{ git.repositoryurl }}"/> |
|
<setting name="js.topnav" value="{{ header.topnav }}"/> |
|
<setting name="header.url" value="{{ header.url }}"/> |
|
<setting name="header.title" value="{{ header.title }}"/> |
|
<setting name="header.subtitle" value="{{ header.subtitle }}"/> |
|
|
|
<setting name="guides.enabled" value="{{ package.rst_directory ? 'true' : 'false' }}"/> |
|
<template name="default" /> |
|
</phpdocumentor>
|
|
|