Questions tagged [apigen]

ApiGen is an API documentation generator for PHP 5.3+

ApiGen is a tool for creating API documentation from PHP source code, similar to phpDocumentor/phpDoc.

ApiGen has support for PHP 5.3 namespaces, packages, linking between documentation, cross referencing to PHP standard classes and general documentation, creation of highlighted source code and experimental support for PHP 5.4 traits.

ApiGen uses a Nette Framework templating system and Texy to produce useful and easy to read HTML documentation, FSHL to create highlighted source code and TokenReflection to describe the documented source code.

23 questions
0
votes
2 answers

ApiGen Windows Netbeans

I configured ApiGen on Windows and am trying generate documentation from NetBeans. Everything runs well after many errors, however I have a mistake, which is my destination is my desk from my pc. How can I change this? Whenever I try to generate…
0
votes
1 answer

Unable to install ApiGen using CLI

I am trying to install Apigen on windows. I am following instructions mentioned here. But I am getting following error in cmd:
Shekhar Joshi
  • 958
  • 1
  • 13
  • 26
0
votes
1 answer

Using Api gen with ant

I user apigen to genereate my phpdoc out of netbeans. But now I want to use it in my antscript. I've downloaded the standalone version for windows. https://github.com/apigen/apigen/downloads The newest 2.8.0 version. My ant script looks like…
Felix
  • 5,452
  • 12
  • 68
  • 163
0
votes
1 answer

phpDocumentor / ApiGen @author tag location

I would love to post this as a general programming question. The reason I don't is that different documenting systems handle tags differently and therefore impose their own rules on what is "right" or "wrong" for a specific language. Now the…
Andreas B
  • 377
  • 3
  • 10
0
votes
1 answer

ApiGen Template config config.neon doesn't exist - Ubuntu

I've recently upgraded Ubuntu, and the localhost root which was /var/www was changed to /var/www/html. I made all necessary adjustments, but now apigen seems locked into searching for the config.neon file at the old www location. This is the…
Orangeman555
  • 1,179
  • 2
  • 21
  • 45
0
votes
0 answers

how to use tags for APIGEN in netbeans?

I am new to generating documentation for PHP code using open source scripts. I found that apigen is good and I have installed it for my project. Now I want to use it via net beans. Main question is How I should comment my code they have not given…
Kapil Gupta
  • 81
  • 1
  • 10
0
votes
1 answer

When I try to run ApiGen I get a PHP Warning: require(Texy.php): failed to open stream: No such file or directory

I installed ApiGen successfully using the following commands: pear channel-discover pear.apigen.org pear channel-discover pear.nette.org pear channel-discover pear.texy.info pear channel-discover pear.kukulich.cz pear channel-discover…
ShasOKais
  • 53
  • 7
0
votes
1 answer

Rules to create file level @package

My code looks like this: /** * @package Test */ require_once('foo.php'); /** * Main class */ class Test{ } /** * Generic exception */ class Test_Excepcion extends Exception{ } I want the first docblock to be a file level block, but ApiGen…
Álvaro González
  • 142,137
  • 41
  • 261
  • 360
1
2