mirror of
https://github.com/nextcloud/server.git
synced 2025-05-03 21:40:31 +00:00

The previous cached version download URL was broken and only a non-functional version was downloaded leading and so the API reference was not updated since NC24. This is fixed by simply using the latest stable phpDocumentor release. Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
7 lines
165 B
Bash
Executable file
7 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
|
|
wget https://phpdoc.org/phpDocumentor.phar
|
|
|
|
mkdir -p api/
|
|
|
|
php7.4 phpDocumentor.phar -t "./api" -d "./lib/public" --title="Nextcloud PHP API ($BRANCH)"
|