├── .env.example ├── .gitignore ├── README.md ├── app ├── App.php ├── Controllers │ ├── Controller.php │ └── Home │ │ └── Index.php ├── Exceptions │ └── Handler.php ├── Helpers │ ├── Config.php │ ├── DebugBar.php │ ├── Helper.php │ ├── Log.php │ ├── Repository.php │ └── function.php ├── Middlewares │ └── AuthMiddleware.php ├── Models │ ├── Models.php │ └── User.php ├── Routes │ └── web.php └── Routing │ └── Router.php ├── composer.json ├── index.php ├── mdcalls ├── Basic │ ├── Exception.php │ └── MdCallsBasic.php ├── Config │ ├── app.php │ ├── database.php │ ├── queue.php │ └── redis.php ├── MdCalls.php └── Service │ └── Kick │ ├── Child │ ├── Queue.php │ ├── Queue │ │ ├── Job.php │ │ └── Worker.php │ └── Storage.php │ └── KickIndex.php ├── public ├── index.php ├── views │ ├── Admin │ │ └── index.html │ └── Home │ │ └── index.html └── xhprof │ ├── xhprof_html │ ├── callgraph.php │ ├── css │ │ └── xhprof.css │ ├── docs │ │ ├── index-fr.html │ │ ├── index.html │ │ ├── sample-callgraph-image.jpg │ │ ├── sample-diff-report-flat-view.jpg │ │ ├── sample-diff-report-parent-child-view.jpg │ │ ├── sample-flat-view.jpg │ │ └── sample-parent-child-view.jpg │ ├── index.php │ ├── jquery │ │ ├── indicator.gif │ │ ├── jquery-1.2.6.js │ │ ├── jquery.autocomplete.css │ │ ├── jquery.autocomplete.js │ │ ├── jquery.tooltip.css │ │ └── jquery.tooltip.js │ ├── js │ │ └── xhprof_report.js │ └── typeahead.php │ └── xhprof_lib │ ├── display │ ├── typeahead_common.php │ └── xhprof.php │ └── utils │ ├── callgraph_utils.php │ ├── xhprof_lib.php │ └── xhprof_runs.php └── storage ├── cache └── .gitignore └── logs └── .gitignore /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | .DS_Store 3 | .idea/* 4 | composer.lock 5 | .env 6 | storage/views/ 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/README.md -------------------------------------------------------------------------------- /app/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/App.php -------------------------------------------------------------------------------- /app/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Controllers/Home/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Controllers/Home/Index.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Helpers/Config.php -------------------------------------------------------------------------------- /app/Helpers/DebugBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Helpers/DebugBar.php -------------------------------------------------------------------------------- /app/Helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Helpers/Helper.php -------------------------------------------------------------------------------- /app/Helpers/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Helpers/Log.php -------------------------------------------------------------------------------- /app/Helpers/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Helpers/Repository.php -------------------------------------------------------------------------------- /app/Helpers/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Helpers/function.php -------------------------------------------------------------------------------- /app/Middlewares/AuthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Middlewares/AuthMiddleware.php -------------------------------------------------------------------------------- /app/Models/Models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Models/Models.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Routes/web.php -------------------------------------------------------------------------------- /app/Routing/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/app/Routing/Router.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/index.php -------------------------------------------------------------------------------- /mdcalls/Basic/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Basic/Exception.php -------------------------------------------------------------------------------- /mdcalls/Basic/MdCallsBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Basic/MdCallsBasic.php -------------------------------------------------------------------------------- /mdcalls/Config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Config/app.php -------------------------------------------------------------------------------- /mdcalls/Config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Config/database.php -------------------------------------------------------------------------------- /mdcalls/Config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Config/queue.php -------------------------------------------------------------------------------- /mdcalls/Config/redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Config/redis.php -------------------------------------------------------------------------------- /mdcalls/MdCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/MdCalls.php -------------------------------------------------------------------------------- /mdcalls/Service/Kick/Child/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Service/Kick/Child/Queue.php -------------------------------------------------------------------------------- /mdcalls/Service/Kick/Child/Queue/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Service/Kick/Child/Queue/Job.php -------------------------------------------------------------------------------- /mdcalls/Service/Kick/Child/Queue/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Service/Kick/Child/Queue/Worker.php -------------------------------------------------------------------------------- /mdcalls/Service/Kick/Child/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Service/Kick/Child/Storage.php -------------------------------------------------------------------------------- /mdcalls/Service/Kick/KickIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/mdcalls/Service/Kick/KickIndex.php -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/index.php -------------------------------------------------------------------------------- /public/views/Admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/views/Admin/index.html -------------------------------------------------------------------------------- /public/views/Home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/views/Home/index.html -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/callgraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/callgraph.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/css/xhprof.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/css/xhprof.css -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/index-fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/index-fr.html -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/index.html -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/sample-callgraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/sample-callgraph-image.jpg -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/sample-diff-report-flat-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/sample-diff-report-flat-view.jpg -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/sample-diff-report-parent-child-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/sample-diff-report-parent-child-view.jpg -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/sample-flat-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/sample-flat-view.jpg -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/docs/sample-parent-child-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/docs/sample-parent-child-view.jpg -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/index.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/jquery/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/jquery/indicator.gif -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/jquery/jquery-1.2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/jquery/jquery-1.2.6.js -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/jquery/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/jquery/jquery.autocomplete.css -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/jquery/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/jquery/jquery.autocomplete.js -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/jquery/jquery.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/jquery/jquery.tooltip.css -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/jquery/jquery.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/jquery/jquery.tooltip.js -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/js/xhprof_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/js/xhprof_report.js -------------------------------------------------------------------------------- /public/xhprof/xhprof_html/typeahead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_html/typeahead.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_lib/display/typeahead_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_lib/display/typeahead_common.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_lib/display/xhprof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_lib/display/xhprof.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_lib/utils/callgraph_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_lib/utils/callgraph_utils.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_lib/utils/xhprof_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_lib/utils/xhprof_lib.php -------------------------------------------------------------------------------- /public/xhprof/xhprof_lib/utils/xhprof_runs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/public/xhprof/xhprof_lib/utils/xhprof_runs.php -------------------------------------------------------------------------------- /storage/cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/storage/cache/.gitignore -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KickPeach/kickPeach/HEAD/storage/logs/.gitignore --------------------------------------------------------------------------------