├── .htaccess ├── LICENSE ├── README.md ├── bin ├── cake ├── cake.bat └── cake.php ├── composer.json ├── config ├── Migrations │ ├── 20150607191654_initial.php │ ├── 20150607192040_add_report_id_index_to_incidents.php │ ├── 20150607192459_add_dev_report_index_to_notifications.php │ ├── 20160111023543_add_locale_to_incidents.php │ ├── 20170515135017_fix_long_pma_versions.php │ ├── 20170530155816_fix_stale_report_states.php │ └── 20170711060435_AlterIncidents.php ├── app.default.php ├── app_ci.php ├── app_example.php ├── bootstrap.php ├── bootstrap_cli.php ├── forwarding_example.php ├── oauth_example.php ├── paths.php ├── requirements.php ├── routes.php └── schema │ ├── i18n.sql │ └── sessions.sql ├── index.php ├── phpstan-baseline.neon ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src ├── Application.php ├── Console │ └── Installer.php ├── Controller │ ├── AppController.php │ ├── Component │ │ ├── GithubApiComponent.php │ │ ├── MailerComponent.php │ │ └── OrderSearchComponent.php │ ├── DevelopersController.php │ ├── ErrorController.php │ ├── EventsController.php │ ├── GithubController.php │ ├── IncidentsController.php │ ├── NotificationsController.php │ ├── PagesController.php │ ├── ReportsController.php │ └── StatsController.php ├── Forwarding │ └── Sentry.php ├── Mailer │ └── Transport │ │ └── TestTransport.php ├── Model │ └── Table │ │ ├── DevelopersTable.php │ │ ├── IncidentsTable.php │ │ ├── NotificationsTable.php │ │ └── ReportsTable.php ├── Report.php ├── Shell │ ├── CleanOldNotifsShell.php │ ├── ConsoleShell.php │ ├── StatsShell.php │ └── SyncGithubIssueStatesShell.php └── View │ ├── AppView.php │ └── Helper │ ├── AppHelper.php │ ├── IncidentsHelper.php │ └── ReportsHelper.php ├── templates ├── Error │ ├── error400.php │ └── error500.php ├── Github │ └── create_issue.php ├── Incidents │ └── view.php ├── Notifications │ └── index.php ├── Pages │ └── home.php ├── Reports │ ├── index.php │ └── view.php ├── Stats │ └── stats.php ├── element │ └── flash │ │ ├── default.php │ │ ├── error.php │ │ └── success.php ├── email │ ├── html │ │ ├── default.php │ │ └── report.php │ └── text │ │ └── default.php └── layout │ ├── ajax.php │ ├── default.php │ ├── email │ ├── html │ │ └── default.php │ └── text │ │ └── default.php │ ├── error.php │ ├── flash.php │ ├── js │ └── default.php │ ├── rss │ └── default.php │ └── xml │ └── default.php ├── tests ├── Fixture │ ├── DevelopersFixture.php │ ├── IncidentsFixture.php │ ├── NotificationsFixture.php │ ├── ReportsFixture.php │ ├── comment_response.json │ ├── empty │ ├── issue_response.json │ ├── report_issue_16853_js.json │ ├── report_js.json │ ├── report_php.json │ └── user_response.json ├── TestCase │ ├── AllTestsTest.php │ ├── Controller │ │ ├── Component │ │ │ └── empty │ │ ├── DevelopersControllerTest.php │ │ ├── EventsControllerTest.php │ │ ├── GithubControllerTest.php │ │ ├── IncidentsControllerTest.php │ │ ├── NotificationsControllerTest.php │ │ └── ReportsControllerTest.php │ ├── Model │ │ ├── Behavior │ │ │ └── empty │ │ └── Table │ │ │ ├── DevelopersTableTest.php │ │ │ ├── IncidentsTableTest.php │ │ │ ├── NotificationsTableTest.php │ │ │ └── ReportsTableTest.php │ ├── ReportTest.php │ ├── Shell │ │ ├── CleanOldNotifsShellTest.php │ │ ├── StatsShellTest.php │ │ └── SyncGithubIssueStatesShellTest.php │ └── View │ │ └── Helper │ │ ├── ReportsHelperTest.php │ │ └── empty └── bootstrap.php └── webroot ├── .htaccess ├── css ├── bootstrap-responsive.css ├── bootstrap-responsive.min.css ├── bootstrap.css ├── bootstrap.min.css ├── cake.generic.css ├── custom.css ├── jquery.dataTables.css ├── jquery.dataTables_themeroller.css ├── jquery.jqplot.min.css ├── shCore.css └── shThemeDefault.css ├── favicon.ico ├── files └── empty ├── img ├── Sorting icons.psd ├── back_disabled.png ├── back_enabled.png ├── back_enabled_hover.png ├── cake.icon.png ├── cake.power.gif ├── favicon.ico ├── forward_disabled.png ├── forward_enabled.png ├── forward_enabled_hover.png ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png ├── sort_asc.png ├── sort_asc_disabled.png ├── sort_both.png ├── sort_desc.png ├── sort_desc_disabled.png ├── test-error-icon.png ├── test-fail-icon.png ├── test-pass-icon.png └── test-skip-icon.png ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── custom.js ├── g.bar-min.js ├── g.dot-min.js ├── g.line-min.js ├── g.pie-min.js ├── g.raphael-min.js ├── jqplot.barRenderer.min.js ├── jqplot.canvasAxisTickRenderer.min.js ├── jqplot.canvasTextRenderer.min.js ├── jqplot.categoryAxisRenderer.min.js ├── jqplot.cursor.min.js ├── jqplot.dateAxisRenderer.min.js ├── jqplot.highlighter.min.js ├── jqplot.pointLabels.min.js ├── jquery.dataTables.min.js ├── jquery.jqplot.min.js ├── jquery.js ├── pie.js ├── raphael-min.js ├── shBrushJScript.js ├── shBrushPhp.js ├── shBrushXml.js └── shCore.js └── robots.txt /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/README.md -------------------------------------------------------------------------------- /bin/cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/bin/cake -------------------------------------------------------------------------------- /bin/cake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/bin/cake.bat -------------------------------------------------------------------------------- /bin/cake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/bin/cake.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/composer.json -------------------------------------------------------------------------------- /config/Migrations/20150607191654_initial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20150607191654_initial.php -------------------------------------------------------------------------------- /config/Migrations/20150607192040_add_report_id_index_to_incidents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20150607192040_add_report_id_index_to_incidents.php -------------------------------------------------------------------------------- /config/Migrations/20150607192459_add_dev_report_index_to_notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20150607192459_add_dev_report_index_to_notifications.php -------------------------------------------------------------------------------- /config/Migrations/20160111023543_add_locale_to_incidents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20160111023543_add_locale_to_incidents.php -------------------------------------------------------------------------------- /config/Migrations/20170515135017_fix_long_pma_versions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20170515135017_fix_long_pma_versions.php -------------------------------------------------------------------------------- /config/Migrations/20170530155816_fix_stale_report_states.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20170530155816_fix_stale_report_states.php -------------------------------------------------------------------------------- /config/Migrations/20170711060435_AlterIncidents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/Migrations/20170711060435_AlterIncidents.php -------------------------------------------------------------------------------- /config/app.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/app.default.php -------------------------------------------------------------------------------- /config/app_ci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/app_ci.php -------------------------------------------------------------------------------- /config/app_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/app_example.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bootstrap_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/bootstrap_cli.php -------------------------------------------------------------------------------- /config/forwarding_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/forwarding_example.php -------------------------------------------------------------------------------- /config/oauth_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/oauth_example.php -------------------------------------------------------------------------------- /config/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/paths.php -------------------------------------------------------------------------------- /config/requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/requirements.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/schema/i18n.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/schema/i18n.sql -------------------------------------------------------------------------------- /config/schema/sessions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/config/schema/sessions.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/index.php -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Console/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Console/Installer.php -------------------------------------------------------------------------------- /src/Controller/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/AppController.php -------------------------------------------------------------------------------- /src/Controller/Component/GithubApiComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/Component/GithubApiComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/MailerComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/Component/MailerComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/OrderSearchComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/Component/OrderSearchComponent.php -------------------------------------------------------------------------------- /src/Controller/DevelopersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/DevelopersController.php -------------------------------------------------------------------------------- /src/Controller/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/ErrorController.php -------------------------------------------------------------------------------- /src/Controller/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/EventsController.php -------------------------------------------------------------------------------- /src/Controller/GithubController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/GithubController.php -------------------------------------------------------------------------------- /src/Controller/IncidentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/IncidentsController.php -------------------------------------------------------------------------------- /src/Controller/NotificationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/NotificationsController.php -------------------------------------------------------------------------------- /src/Controller/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/PagesController.php -------------------------------------------------------------------------------- /src/Controller/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/ReportsController.php -------------------------------------------------------------------------------- /src/Controller/StatsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Controller/StatsController.php -------------------------------------------------------------------------------- /src/Forwarding/Sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Forwarding/Sentry.php -------------------------------------------------------------------------------- /src/Mailer/Transport/TestTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Mailer/Transport/TestTransport.php -------------------------------------------------------------------------------- /src/Model/Table/DevelopersTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Model/Table/DevelopersTable.php -------------------------------------------------------------------------------- /src/Model/Table/IncidentsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Model/Table/IncidentsTable.php -------------------------------------------------------------------------------- /src/Model/Table/NotificationsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Model/Table/NotificationsTable.php -------------------------------------------------------------------------------- /src/Model/Table/ReportsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Model/Table/ReportsTable.php -------------------------------------------------------------------------------- /src/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Report.php -------------------------------------------------------------------------------- /src/Shell/CleanOldNotifsShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Shell/CleanOldNotifsShell.php -------------------------------------------------------------------------------- /src/Shell/ConsoleShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Shell/ConsoleShell.php -------------------------------------------------------------------------------- /src/Shell/StatsShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Shell/StatsShell.php -------------------------------------------------------------------------------- /src/Shell/SyncGithubIssueStatesShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/Shell/SyncGithubIssueStatesShell.php -------------------------------------------------------------------------------- /src/View/AppView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/View/AppView.php -------------------------------------------------------------------------------- /src/View/Helper/AppHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/View/Helper/AppHelper.php -------------------------------------------------------------------------------- /src/View/Helper/IncidentsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/View/Helper/IncidentsHelper.php -------------------------------------------------------------------------------- /src/View/Helper/ReportsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/src/View/Helper/ReportsHelper.php -------------------------------------------------------------------------------- /templates/Error/error400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Error/error400.php -------------------------------------------------------------------------------- /templates/Error/error500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Error/error500.php -------------------------------------------------------------------------------- /templates/Github/create_issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Github/create_issue.php -------------------------------------------------------------------------------- /templates/Incidents/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Incidents/view.php -------------------------------------------------------------------------------- /templates/Notifications/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Notifications/index.php -------------------------------------------------------------------------------- /templates/Pages/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Pages/home.php -------------------------------------------------------------------------------- /templates/Reports/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Reports/index.php -------------------------------------------------------------------------------- /templates/Reports/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Reports/view.php -------------------------------------------------------------------------------- /templates/Stats/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/Stats/stats.php -------------------------------------------------------------------------------- /templates/element/flash/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/element/flash/default.php -------------------------------------------------------------------------------- /templates/element/flash/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/element/flash/error.php -------------------------------------------------------------------------------- /templates/element/flash/success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/element/flash/success.php -------------------------------------------------------------------------------- /templates/email/html/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/email/html/default.php -------------------------------------------------------------------------------- /templates/email/html/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/email/html/report.php -------------------------------------------------------------------------------- /templates/email/text/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/email/text/default.php -------------------------------------------------------------------------------- /templates/layout/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/ajax.php -------------------------------------------------------------------------------- /templates/layout/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/default.php -------------------------------------------------------------------------------- /templates/layout/email/html/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/email/html/default.php -------------------------------------------------------------------------------- /templates/layout/email/text/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/email/text/default.php -------------------------------------------------------------------------------- /templates/layout/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/error.php -------------------------------------------------------------------------------- /templates/layout/flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/flash.php -------------------------------------------------------------------------------- /templates/layout/js/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/js/default.php -------------------------------------------------------------------------------- /templates/layout/rss/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/templates/layout/rss/default.php -------------------------------------------------------------------------------- /templates/layout/xml/default.php: -------------------------------------------------------------------------------- 1 | fetch('content'); 3 | -------------------------------------------------------------------------------- /tests/Fixture/DevelopersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/DevelopersFixture.php -------------------------------------------------------------------------------- /tests/Fixture/IncidentsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/IncidentsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/NotificationsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/NotificationsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ReportsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/ReportsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/comment_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/comment_response.json -------------------------------------------------------------------------------- /tests/Fixture/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Fixture/issue_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/issue_response.json -------------------------------------------------------------------------------- /tests/Fixture/report_issue_16853_js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/report_issue_16853_js.json -------------------------------------------------------------------------------- /tests/Fixture/report_js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/report_js.json -------------------------------------------------------------------------------- /tests/Fixture/report_php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/report_php.json -------------------------------------------------------------------------------- /tests/Fixture/user_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/Fixture/user_response.json -------------------------------------------------------------------------------- /tests/TestCase/AllTestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/AllTestsTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/Controller/DevelopersControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Controller/DevelopersControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/EventsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Controller/EventsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/GithubControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Controller/GithubControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/IncidentsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Controller/IncidentsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/NotificationsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Controller/NotificationsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/ReportsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Controller/ReportsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/DevelopersTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Model/Table/DevelopersTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/IncidentsTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Model/Table/IncidentsTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/NotificationsTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Model/Table/NotificationsTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/ReportsTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Model/Table/ReportsTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/ReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/ReportTest.php -------------------------------------------------------------------------------- /tests/TestCase/Shell/CleanOldNotifsShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Shell/CleanOldNotifsShellTest.php -------------------------------------------------------------------------------- /tests/TestCase/Shell/StatsShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Shell/StatsShellTest.php -------------------------------------------------------------------------------- /tests/TestCase/Shell/SyncGithubIssueStatesShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/Shell/SyncGithubIssueStatesShellTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/ReportsHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/TestCase/View/Helper/ReportsHelperTest.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /webroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/.htaccess -------------------------------------------------------------------------------- /webroot/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /webroot/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /webroot/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/bootstrap.css -------------------------------------------------------------------------------- /webroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /webroot/css/cake.generic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/cake.generic.css -------------------------------------------------------------------------------- /webroot/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/custom.css -------------------------------------------------------------------------------- /webroot/css/jquery.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/jquery.dataTables.css -------------------------------------------------------------------------------- /webroot/css/jquery.dataTables_themeroller.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/jquery.dataTables_themeroller.css -------------------------------------------------------------------------------- /webroot/css/jquery.jqplot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/jquery.jqplot.min.css -------------------------------------------------------------------------------- /webroot/css/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/shCore.css -------------------------------------------------------------------------------- /webroot/css/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/css/shThemeDefault.css -------------------------------------------------------------------------------- /webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/favicon.ico -------------------------------------------------------------------------------- /webroot/files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/img/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/Sorting icons.psd -------------------------------------------------------------------------------- /webroot/img/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/back_disabled.png -------------------------------------------------------------------------------- /webroot/img/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/back_enabled.png -------------------------------------------------------------------------------- /webroot/img/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/back_enabled_hover.png -------------------------------------------------------------------------------- /webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /webroot/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/favicon.ico -------------------------------------------------------------------------------- /webroot/img/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/forward_disabled.png -------------------------------------------------------------------------------- /webroot/img/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/forward_enabled.png -------------------------------------------------------------------------------- /webroot/img/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/forward_enabled_hover.png -------------------------------------------------------------------------------- /webroot/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /webroot/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /webroot/img/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/sort_asc.png -------------------------------------------------------------------------------- /webroot/img/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/sort_asc_disabled.png -------------------------------------------------------------------------------- /webroot/img/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/sort_both.png -------------------------------------------------------------------------------- /webroot/img/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/sort_desc.png -------------------------------------------------------------------------------- /webroot/img/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/sort_desc_disabled.png -------------------------------------------------------------------------------- /webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /webroot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/index.php -------------------------------------------------------------------------------- /webroot/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/bootstrap.js -------------------------------------------------------------------------------- /webroot/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/bootstrap.min.js -------------------------------------------------------------------------------- /webroot/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/custom.js -------------------------------------------------------------------------------- /webroot/js/g.bar-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/g.bar-min.js -------------------------------------------------------------------------------- /webroot/js/g.dot-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/g.dot-min.js -------------------------------------------------------------------------------- /webroot/js/g.line-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/g.line-min.js -------------------------------------------------------------------------------- /webroot/js/g.pie-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/g.pie-min.js -------------------------------------------------------------------------------- /webroot/js/g.raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/g.raphael-min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.barRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.barRenderer.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.canvasAxisTickRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.canvasAxisTickRenderer.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.canvasTextRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.canvasTextRenderer.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.categoryAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.categoryAxisRenderer.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.cursor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.cursor.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.dateAxisRenderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.dateAxisRenderer.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.highlighter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.highlighter.min.js -------------------------------------------------------------------------------- /webroot/js/jqplot.pointLabels.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jqplot.pointLabels.min.js -------------------------------------------------------------------------------- /webroot/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /webroot/js/jquery.jqplot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jquery.jqplot.min.js -------------------------------------------------------------------------------- /webroot/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/jquery.js -------------------------------------------------------------------------------- /webroot/js/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/pie.js -------------------------------------------------------------------------------- /webroot/js/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/raphael-min.js -------------------------------------------------------------------------------- /webroot/js/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/shBrushJScript.js -------------------------------------------------------------------------------- /webroot/js/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/shBrushPhp.js -------------------------------------------------------------------------------- /webroot/js/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/shBrushXml.js -------------------------------------------------------------------------------- /webroot/js/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/js/shCore.js -------------------------------------------------------------------------------- /webroot/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpmyadmin/error-reporting-server/HEAD/webroot/robots.txt --------------------------------------------------------------------------------