Skip to content
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.

Latest commit

 

History

History
43 lines (38 loc) · 1.51 KB

README_RU.md

File metadata and controls

43 lines (38 loc) · 1.51 KB

Это обновленный форк - A TestListener that integrates with XHProf

1.0.3 - для php >= 5.6 и phpunit 5.7.*
1.0.2 - для php >= 5.6 и phpunit 5.6.*

=======

Для корректной работы необходимо, что бы в настройках PHP xdebug был включен.

Пример XML конфигурации для активации листенера:

<listeners>
    <listener class="PHPUnit\XHProfTestListener\XHProfTestListener">
        <arguments>
            <array>
                <element key="xhprofLibFile">
                    <string>/var/www/xhprof_lib/utils/xhprof_lib.php</string>
                </element>
                <element key="xhprofRunsFile">
                    <string>/var/www/xhprof_lib/utils/xhprof_runs.php</string>
                </element>
                <element key="xhprofWeb">
                    <string>http://localhost/xhprof_html/index.php</string>
                </element>
                <element key="appNamespace">
                    <string>Doctrine2</string>
                </element>
                <element key="xhprofFlags">
                    <string>XHPROF_FLAGS_CPU,XHPROF_FLAGS_MEMORY</string>
                </element>
                <element key="xhprofIgnore">
                    <string>call_user_func,call_user_func_array</string>
                </element>
            </array>
        </arguments>
    </listener>
</listeners>