├── AUTHORS ├── LICENSE ├── README.md ├── autoload.php ├── bin └── import.php ├── config └── config.default.php ├── contrib └── zf1 │ └── XhguiProfilerPlugin.php ├── examples ├── autoload.php └── zf1-plugin.php └── src ├── Config.php ├── Exception └── ProfilerException.php ├── Importer.php ├── ImporterFactory.php ├── Profiler.php ├── ProfilerFactory.php ├── Profilers ├── AbstractProfiler.php ├── ProfilerInterface.php ├── Tideways.php ├── TidewaysXHProf.php ├── UProfiler.php └── XHProf.php ├── ProfilingData.php ├── ProfilingFlags.php ├── Saver ├── AbstractSaver.php ├── FileSaver.php ├── MongoSaver.php ├── PdoSaver.php ├── SaverInterface.php ├── StackSaver.php └── UploadSaver.php └── SaverFactory.php /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/autoload.php -------------------------------------------------------------------------------- /bin/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/bin/import.php -------------------------------------------------------------------------------- /config/config.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/config/config.default.php -------------------------------------------------------------------------------- /contrib/zf1/XhguiProfilerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/contrib/zf1/XhguiProfilerPlugin.php -------------------------------------------------------------------------------- /examples/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/examples/autoload.php -------------------------------------------------------------------------------- /examples/zf1-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/examples/zf1-plugin.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Exception/ProfilerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Exception/ProfilerException.php -------------------------------------------------------------------------------- /src/Importer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Importer.php -------------------------------------------------------------------------------- /src/ImporterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/ImporterFactory.php -------------------------------------------------------------------------------- /src/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profiler.php -------------------------------------------------------------------------------- /src/ProfilerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/ProfilerFactory.php -------------------------------------------------------------------------------- /src/Profilers/AbstractProfiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profilers/AbstractProfiler.php -------------------------------------------------------------------------------- /src/Profilers/ProfilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profilers/ProfilerInterface.php -------------------------------------------------------------------------------- /src/Profilers/Tideways.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profilers/Tideways.php -------------------------------------------------------------------------------- /src/Profilers/TidewaysXHProf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profilers/TidewaysXHProf.php -------------------------------------------------------------------------------- /src/Profilers/UProfiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profilers/UProfiler.php -------------------------------------------------------------------------------- /src/Profilers/XHProf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Profilers/XHProf.php -------------------------------------------------------------------------------- /src/ProfilingData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/ProfilingData.php -------------------------------------------------------------------------------- /src/ProfilingFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/ProfilingFlags.php -------------------------------------------------------------------------------- /src/Saver/AbstractSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/AbstractSaver.php -------------------------------------------------------------------------------- /src/Saver/FileSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/FileSaver.php -------------------------------------------------------------------------------- /src/Saver/MongoSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/MongoSaver.php -------------------------------------------------------------------------------- /src/Saver/PdoSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/PdoSaver.php -------------------------------------------------------------------------------- /src/Saver/SaverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/SaverInterface.php -------------------------------------------------------------------------------- /src/Saver/StackSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/StackSaver.php -------------------------------------------------------------------------------- /src/Saver/UploadSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/Saver/UploadSaver.php -------------------------------------------------------------------------------- /src/SaverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perftools/php-profiler/HEAD/src/SaverFactory.php --------------------------------------------------------------------------------