0

プロジェクト用に Jenkins を構成していて、phpdoc を作成したいのですが、うまくいきません。私は ping を使用しており、私のサーバーは Debian を使用しています。

私が作ったもの:

  • phpDoc をインストールする

    pear install phpdoc/phpDocumentor-beta
    
  • ピン :

    <target name="phpdoc">
         <phpdoc2 destdir="${workspace}/app/docs" template="responsive">
             <fileset dir="./src">
                 <include name="**.*.php" />
             </fileset>
         </phpdoc2>
     </target>
    

私はこのエラーが発生しています:

    PHP Fatal error:  Call to undefined method phpDocumentor\Parser\Parser::setTitle() in /usr/share/php/phing/tasks/ext/phpdoc/PhpDocumentor2Wrapper.php on line 169
    PHP Stack trace:
    PHP   1. {main}() /usr/share/php/phing.php:0
    PHP   2. Phing::fire() /usr/share/php/phing.php:43
    PHP   3. Phing::start() /usr/share/php/phing/Phing.php:270
    PHP   4. Phing->runBuild() /usr/share/php/phing/Phing.php:170
    PHP   5. Project->executeTargets() /usr/share/php/phing/Phing.php:572
    PHP   6. Project->executeTarget() /usr/share/php/phing/Project.php:791
    PHP   7. Target->performTasks() /usr/share/php/phing/Project.php:818
    PHP   8. Target->main() /usr/share/php/phing/Target.php:321
    PHP   9. Task->perform() /usr/share/php/phing/Target.php:298
    PHP  10. PhingCallTask->main() /usr/share/php/phing/Task.php:260
    PHP  11. PhingTask->main() /usr/share/php/phing/tasks/system/PhingCallTask.php:158
    PHP  12. PhingTask->processFile() /usr/share/php/phing/tasks/system/PhingTask.php:150
    PHP  13. Project->executeTarget() /usr/share/php/phing/tasks/system/PhingTask.php:277
    PHP  14. Target->performTasks() /usr/share/php/phing/Project.php:818
    PHP  15. Target->main() /usr/share/php/phing/Target.php:321
    PHP  16. Task->perform() /usr/share/php/phing/Target.php:298
    PHP  17. PhpDocumentor2Task->main() /usr/share/php/phing/Task.php:260
    PHP  18. PhpDocumentor2Wrapper->run() /usr/share/php/phing/tasks/ext/phpdoc/PhpDocumentor2Task.php:147
    PHP  19. PhpDocumentor2Wrapper->parseFiles() /usr/share/php/phing/tasks/ext/phpdoc/PhpDocumentor2Wrapper.php:201
    Build step 'Invoke Phing targets' marked build as failure

phpDocumentor クラスが見つからないようですが、理由がわかりません。

私のインクルード パスは .:/usr/share/php:/usr/share/pear で、phpDocumentor は /usr/share/pear フォルダーにインストールされます。

何か案は ?

編集:簡単なテストファイルを作成しました:

    # cat test.php
    <?php
    $parser = new \phpDocumentor\Parser\Parser();

しかし、私はこのエラーが発生します:

    # php -f test.php
    PHP Fatal error:  Class 'phpDocumentor\Parser\Parser' not found in /var/www/test.php on line 2
    PHP Stack trace:
    PHP   1. {main}() /var/www/test.php:0

なぜ phpDocumentor seams がインストールされないのですか?

pear info phpdoc/phpDocumentor
About pear.phpdoc.org/phpDocumentor-2.0.0
=========================================
Release Type          PEAR-style PHP-based Package
Name                  phpDocumentor
Channel               pear.phpdoc.org
[...]
Release Date          2013-08-03 06:08:35
Release Version       2.0.0 (stable)
API Version           2.0.0 (stable)
package.xml version   2.0
Last Modified         2013-08-06 08:17
Previous Installed    - None -
Version
4

3 に答える 3

1

私は最終的に exec コマンドを使用してそれを作成しました:

<target name="phpdoc" description="API Documentation">
     <exec command="phpdoc
        -d ${ws}/src
        -t ${builddir}/reports/doc/
        --template responsive
    " />
</target>

オプションが少なく、あまりきれいではありませんが、うまくいきます。

于 2013-08-07T07:57:21.107 に答える
0

安定版 1.4.4 (安定版) をダウンロードします - http://pear.php.net/package/PhpDocumentor/

多分タイトルを設定してみてください:

<target name="phpdoc">
     <phpdoc2 title="Some Title" destdir="${workspace}/app/docs" template="responsive">
         <fileset dir="./src">
             <include name="**.*.php" />
         </fileset>
     </phpdoc2>
 </target>
于 2013-08-03T21:11:40.503 に答える