Structuring Documentation Using Doxygen

I am starting to document my PHP5 framework with Doxygen. I am trying to use the built-in documentation of the Framework CodeIgniter as a reference. However, its documentation is written using phpDocumentor syntax. The following is an example of a description of the Loader CodeIgniter class:

/**
 * Loader Class
 *
 * Loads views and files
 *
 * @package          CodeIgniter
 * @subpackage       Libraries
 * @author           ExpressionEngine Dev Team
 * @category         Loader
 * @link             http://codeigniter.com/user_guide/libraries/loader.html
 */
class CI_Loader {
...
}

How can I implement the same structure (Package-> Subpackage-> Category-> Class) using Doxygen? I would like to have a corresponding description page for each element of the structure.

Another question: how do you structure your project documentation?

+5
source share
1 answer

All Articles