generate_api_docs.php 280 Bytes
Newer Older
Jonathan.Wage's avatar
Jonathan.Wage committed
1 2 3 4 5 6 7 8 9
<?php
$output_directory = "api_documentation/trunk";
$parse_directory = "lib";
$template = 'HTML:Smarty:Doctrine';
$title = 'Doctrine Documentation';

$command = "phpdoc -pp on -s on -dn Doctrine -d $parse_directory -ti $title -t $output_directory -o $template";

@exec($command);