{"id":18310704,"url":"https://github.com/visualappeal/ping-laravel","last_synced_at":"2025-04-05T18:31:45.067Z","repository":{"id":13052472,"uuid":"15732604","full_name":"VisualAppeal/ping-laravel","owner":"VisualAppeal","description":"PHP uptime monitor with laravel","archived":false,"fork":false,"pushed_at":"2023-04-15T16:56:21.000Z","size":167,"stargazers_count":29,"open_issues_count":1,"forks_count":14,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-21T08:34:57.197Z","etag":null,"topics":["laravel","php","uptime"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VisualAppeal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-08T10:37:07.000Z","updated_at":"2024-03-22T20:57:27.000Z","dependencies_parsed_at":"2022-09-23T10:24:54.904Z","dependency_job_id":null,"html_url":"https://github.com/VisualAppeal/ping-laravel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VisualAppeal%2Fping-laravel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VisualAppeal%2Fping-laravel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VisualAppeal%2Fping-laravel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VisualAppeal%2Fping-laravel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VisualAppeal","download_url":"https://codeload.github.com/VisualAppeal/ping-laravel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247383873,"owners_count":20930362,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["laravel","php","uptime"],"created_at":"2024-11-05T16:15:17.861Z","updated_at":"2025-04-05T18:31:44.396Z","avatar_url":"https://github.com/VisualAppeal.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![SensioLabsInsight](https://insight.sensiolabs.com/projects/d1c84f2e-5a58-465e-b49c-3d72f1f4c683/big.png)](https://insight.sensiolabs.com/account/widget?project=d1c84f2e-5a58-465e-b49c-3d72f1f4c683)\n\nThis application monitors the uptime by making cURL requests to a defined set of websites and display the data in charts.\n\nThe only languages currently available are english and german. You can edit the language files in `app/lang/[2_LETTER_COUNTRY_CODE]/*.php`. Just copy the english/german translation and edit the files. Pull requests are welcomed.\n\n## Requirements\n\n* npm (node.js package manger)\n\n## Screenshots\n\n![Screenshot 1](http://www.visualappeal.de/github/ping/screenshot_uptime.png)\n![Screenshot 2](http://www.visualappeal.de/github/ping/screenshot_latency.png)\n![Screenshot 3](http://www.visualappeal.de/github/ping/screenshot_edit_check.png)\n\n## Configuration\n\nIn the future there might be an installer.\n\nSet the environment variable `APPLICATION_ENV` to a value which is unequal `testing`, e.g. `development` or `production`. Create the folder `app/config/[APPLICATION_ENV]`. All config files in this directory will be merged with the config files in `app/config`. The most important files are `database.php` and `app.php` which should similar to this:\n\n```php\n\u003c?php\n\n// app/config/[APPLICATION_ENV]/database.php\nreturn array(\n\t'connections' =\u003e array(\n\t\t'app' =\u003e array(\n\t\t\t'driver'    =\u003e 'mysql',\n\t\t\t'host'      =\u003e 'localhost',\n\t\t\t'database'  =\u003e 'ping_database',\n\t\t\t'username'  =\u003e 'ping_database_user',\n\t\t\t'password'  =\u003e 'ping_database_user_password',\n\t\t\t'charset'   =\u003e 'utf8',\n\t\t\t'collation' =\u003e 'utf8_unicode_ci',\n\t\t\t'prefix'    =\u003e 'ping_',\n\t\t),\n\t),\n);\n```\n\n```php\n\u003c?php\n\n// app/config/[APPLICATION_ENV]/app.php\nreturn array(\n\t'format' =\u003e array(\n\t\t'datetime' =\u003e 'd/m/Y H:i', // see http://php.net/date\n\t),\n\t'url' =\u003e 'http://127.0.0.1/ping/public',\n\t'locale' =\u003e 'en',\n\t'timezone' =\u003e 'Europe/Berlin',\n\t'key' =\u003e '' // 32 random alphanumeric chars\n);\n```\n\nFor a normal installation you should create an `auth.php` which will create a admin after installation:\n\n```php\n\u003c?php\n\n// app/config/[APPLICATION_ENV]/auth.php\nreturn array(\n\t'default' =\u003e array(\n\t\t'email' =\u003e 'email@example.com',\n\t\t'password' =\u003e '123456',\n\t),\n);\n```\n\n## Installation\n\n1. Clone the repository\n2. Create your config\n4. `php artisan migrate --package=cartalyst/sentry`\n5. `php artisan migrate`\n6. `grunt build`\n4. visit http://url-to-repository/public\n\n## ToDo\n\n* Dashboard!\n* Search in body for string when checking uptime\n* Fix translation issues\n* Unit Tests\n\n## Contributors, Credits and libraries\n\n* Framework: http://laravel.com/\n* User management: https://cartalyst.com/manual/sentry\n* Uptime check: https://github.com/rmccue/Requests/\n* Favicon: http://www.iconarchive.com/show/ivista-2-icons-by-gakuseisean/Files-Upload-File-icon.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisualappeal%2Fping-laravel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvisualappeal%2Fping-laravel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisualappeal%2Fping-laravel/lists"}