{"id":41214955,"url":"https://github.com/phore/phore-status-page","last_synced_at":"2026-01-22T23:58:45.017Z","repository":{"id":57039195,"uuid":"154815480","full_name":"phore/phore-status-page","owner":"phore","description":"A basic html status page for microservices management","archived":false,"fork":false,"pushed_at":"2020-05-08T22:21:47.000Z","size":1395,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-09T17:02:47.478Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://infracamp.org/project/phore/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phore.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-26T10:07:37.000Z","updated_at":"2020-05-14T11:48:11.000Z","dependencies_parsed_at":"2022-08-23T23:31:05.195Z","dependency_job_id":null,"html_url":"https://github.com/phore/phore-status-page","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/phore/phore-status-page","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-status-page","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-status-page/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-status-page/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-status-page/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phore","download_url":"https://codeload.github.com/phore/phore-status-page/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-status-page/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28675279,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-22T23:58:43.014Z","updated_at":"2026-01-22T23:58:45.004Z","avatar_url":"https://github.com/phore.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Phore Status Page - Fastest way to generate a Status page\n\nQuick prototyping framework. Includes:\n\n- [Bootstrap 4](https://getbootstrap.com)\n- [CoreUI](https://coreui.io/)\n- [FontAwesome](https://fontawesome.com)\n\nSee our **[Interactive Demo](https://phore.github.io/phore-status-page/localhost/)**!\n\n## Quick start\n\nYour brand new status page can look like this within 30 seconds.\n![StatusPage](doc/coreui-screenshot.png)\n\nInstall library using composer:\n```bash\ncomposer require phore/status-page\n```\n\nCreate your `/www/index.php`:\n```php\n\u003c?php\nnamespace App;\nuse Phore\\StatusPage\\PageHandler\\NaviButtonWithIcon;\nuse Phore\\StatusPage\\StatusPageApp;\n\nrequire __DIR__ . \"/../vendor/autoload.php\"; // Point to your composer vendor directory here!\n\n$app = new StatusPageApp(\"MyApplication\");\n\n$app-\u003eaddPage(\"/\", function () {\n    return [\"h1\" =\u003e \"hello world\"];\n}, new NaviButtonWithIcon(\"Home\", \"fas fa-home\"));\n\n$app-\u003eserve();\n```\n\nCreate a `.htaccess` file to define the fallback-resource:\n(If using kickstart, define `apache_fallback_resource: \"/index.php\"` in your `.kick.yml`)\n```\nFallbackResource /index.php\n```\n\n***Done!***\n\n\n## Authentication (HTTP Basic)\n\n```php\n\u003c?php \n$app = new BasicAuthStatusPageApp();\n$app-\u003eallowUser(\"admin\", \"admin\");\n\n```\n\n\n## Features\n\n### Mouting the application in a subdirectory\n\nJust create a subdirectory and a `.htaccess` file pointing to \nthe subdirectories index file:\n\n```\nFallbackResource /subdir/index.php\n```\n\nCreate the `index.php` and specifiy the subdirectories name\nas second constructor argument:\n\n```php\n\u003c?php\n\n$app = new StatusPageApp(\"SomeName\", \"/subdir\");\n$app-\u003eaddPage(\"/subdir/\", function() {\n    return [\"h1\"=\u003e\"SubApp\"];\n});\n$app-\u003eserve();\n```\n\n\n\n\n### Tables\n\n```php\n\u003c?php\n$data = [\"a\", \"b\", \"c\"];\n\n$tblData = phore_array_transform($data, function($key, $value) {\n    return [\n        date (\"Y-m-d\"),\n        [\"a @href=/some/other\" =\u003e \"Hello Column\"]\n    ];\n});\n\n$tbl = pt()-\u003ebasic_table(\n    [\"Date\",    \"Comment\"],\n    $tblData,\n    [\"\",        \"@align=right\"]\n);\n\n```\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphore%2Fphore-status-page","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphore%2Fphore-status-page","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphore%2Fphore-status-page/lists"}