Added phpDocumentor config.

This commit is contained in:
flash 2025-05-12 15:14:17 +02:00
parent 8a179c62a4
commit 7bd91d9907
Signed by: flash
GPG key ID: 6D833BE0D210AC02
2 changed files with 25 additions and 1 deletions

2
.gitignore vendored
View file

@ -4,7 +4,7 @@
.vscode/
.vs/
.idea/
docs/html/
docs/
.phpdoc*
.phpunit*
vendor/

24
phpdoc.xml Normal file
View file

@ -0,0 +1,24 @@
<?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="data/xsd/phpdoc.xsd">
<title>Railgun JWT</title>
<template name="default" />
<paths>
<output>docs</output>
</paths>
<version number="latest">
<folder>latest</folder>
<api format="php">
<default-package-name>Railgun\Jwt</default-package-name>
<visibility>public</visibility>
<source dsn=".">
<path>src</path>
</source>
<extensions>
<extension>php</extension>
</extensions>
<ignore hidden="true" symlinks="true">
<path>tests/**/*</path>
</ignore>
</api>
</version>
</phpdocumentor>