├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── Dockerfile ├── DockerfileHHVM ├── DockerfileTidyWays ├── DockerfileUprofiler ├── LICENSE ├── README.md ├── bin ├── example.php ├── example_samples.php ├── example_save_to_file.php ├── example_send_to_api.php ├── install.php └── install_data │ ├── mysqli │ └── source.sql │ ├── pdo_mysql │ └── source.sql │ ├── pdo_pgsql │ └── source.sql │ └── pdo_sqlite │ └── source.sql ├── composer.json ├── images └── liveprof_logo.png ├── phpunit.xml ├── src └── Badoo │ └── LiveProfiler │ ├── DataPacker.php │ ├── DataPackerInterface.php │ ├── LiveProfiler.php │ ├── Logger.php │ └── SimpleProfiler.php └── tests ├── bootstrap.php └── unit └── Badoo ├── BaseTestCase.php └── LiveProfiler ├── DataPackerTest.php ├── LiveProfilerTest.php ├── LoggerTest.php └── SimpleProfilerTest.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | composer.lock 4 | *.log -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/Dockerfile -------------------------------------------------------------------------------- /DockerfileHHVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/DockerfileHHVM -------------------------------------------------------------------------------- /DockerfileTidyWays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/DockerfileTidyWays -------------------------------------------------------------------------------- /DockerfileUprofiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/DockerfileUprofiler -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/README.md -------------------------------------------------------------------------------- /bin/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/example.php -------------------------------------------------------------------------------- /bin/example_samples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/example_samples.php -------------------------------------------------------------------------------- /bin/example_save_to_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/example_save_to_file.php -------------------------------------------------------------------------------- /bin/example_send_to_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/example_send_to_api.php -------------------------------------------------------------------------------- /bin/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/install.php -------------------------------------------------------------------------------- /bin/install_data/mysqli/source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/install_data/mysqli/source.sql -------------------------------------------------------------------------------- /bin/install_data/pdo_mysql/source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/install_data/pdo_mysql/source.sql -------------------------------------------------------------------------------- /bin/install_data/pdo_pgsql/source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/install_data/pdo_pgsql/source.sql -------------------------------------------------------------------------------- /bin/install_data/pdo_sqlite/source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/bin/install_data/pdo_sqlite/source.sql -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/composer.json -------------------------------------------------------------------------------- /images/liveprof_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/images/liveprof_logo.png -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Badoo/LiveProfiler/DataPacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/src/Badoo/LiveProfiler/DataPacker.php -------------------------------------------------------------------------------- /src/Badoo/LiveProfiler/DataPackerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/src/Badoo/LiveProfiler/DataPackerInterface.php -------------------------------------------------------------------------------- /src/Badoo/LiveProfiler/LiveProfiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/src/Badoo/LiveProfiler/LiveProfiler.php -------------------------------------------------------------------------------- /src/Badoo/LiveProfiler/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/src/Badoo/LiveProfiler/Logger.php -------------------------------------------------------------------------------- /src/Badoo/LiveProfiler/SimpleProfiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badoo/liveprof/HEAD/src/Badoo/LiveProfiler/SimpleProfiler.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |