You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate API docs by passing source directories and destination option:
apigen src --output docs
Configuration
ApiGen can be configured with apigen.neon configuration file.
parameters:# string[], passed as arguments in CLI, e.g. ['src']paths: []
# string[], --include in CLI, included files mask, e.g. ['*.php']include: ['*.php']
# string[], --exclude in CLI, excluded files mask, e.g. ['tests/**']exclude: []
# bool, should protected members be excluded?excludeProtected:false# bool, should private members be excluded?excludePrivate:true# string[], list of tags used for excluding class-likes and membersexcludeTagged: ['internal']
# string, --output in CLIoutputDir:'%workingDir%/api'# string | null, --theme in CLIthemeDir:null# string, --title in CLItitle:'API Documentation'# string, --base-url in CLIbaseUrl:''# int, --workers in CLI, number of processes that will be forked for parallel renderingworkerCount:8# string, --memory-limit in CLImemoryLimit:'512M'
About
PHP 7.1 ready Smart and Simple Documentation for your PHP project