Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 508 Bytes

documentation-generation.md

File metadata and controls

19 lines (12 loc) · 508 Bytes

HTML-Documentation

Generate application documentation

Enter container-bash

docker-compose run --rm php bash

Run docs generator

$ php -dmemory_limit=512M vendor/bin/apidoc api \
--template=online \
--exclude=yiisoft,Test,Tests,test,tests,ezyang,phpdocumentor,nikic,php_codesniffer,phptidy,php-cs-fixer,faker \
src/,vendor/ \
runtime/html

The above command is an example, which excluded certain folders containing a lot of files or files mainly for debugging