{"id":21846169,"url":"https://github.com/owenvoke/log-browser-check","last_synced_at":"2026-05-11T16:13:47.134Z","repository":{"id":57046100,"uuid":"69864945","full_name":"owenvoke/log-browser-check","owner":"owenvoke","description":"A simple web server log checker to monitor the browser diversity on websites.","archived":false,"fork":false,"pushed_at":"2017-12-18T11:15:36.000Z","size":62,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-02T04:42:16.693Z","etag":null,"topics":["analyse","browser","log","php","web"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/pxgamer/log-browser-check","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/owenvoke.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-10-03T11:32:45.000Z","updated_at":"2024-10-09T16:58:25.000Z","dependencies_parsed_at":"2022-08-24T05:00:19.160Z","dependency_job_id":null,"html_url":"https://github.com/owenvoke/log-browser-check","commit_stats":null,"previous_names":["pxgamer/log-browser-check"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/owenvoke/log-browser-check","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Flog-browser-check","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Flog-browser-check/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Flog-browser-check/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Flog-browser-check/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owenvoke","download_url":"https://codeload.github.com/owenvoke/log-browser-check/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Flog-browser-check/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32902643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["analyse","browser","log","php","web"],"created_at":"2024-11-27T23:13:10.862Z","updated_at":"2026-05-11T16:13:47.120Z","avatar_url":"https://github.com/owenvoke.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# log-browser-check\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE.md)\n[![Build Status][ico-travis]][link-travis]\n[![Style CI][ico-styleci]][link-styleci]\n[![Code Coverage][ico-code-quality]][link-code-quality]\n[![Total Downloads][ico-downloads]][link-downloads]\n\nA simple web server log checker to monitor the browser diversity on websites.\n\n## Structure\n\n```\nsrc/\ntests/\nvendor/\n```\n\n## Install\n\nVia Composer\n\n``` bash\n$ composer require pxgamer/log-browser-check\n```\n\n## Usage\n\n### Supported logs\n\nServer | Supported?\n------ | ----------\nIIS    | Yes\nApache | No\nNginx  | No\n\n```php\nuse pxgamer\\LogBrowserChecker\\Config;\nuse pxgamer\\LogBrowserChecker\\IIS;\n\n$config = new Config([\n    'session_column' =\u003e 7,\n    'ip_column' =\u003e 6,\n    'root_dir' =\u003e __DIR__ . '/logs',\n    'site_name' =\u003e 'test.com',\n    'ignored_ips' =\u003e ['127.0.0.1']\n]);\n\n$browserCheck = new IIS($config);\n$browserCheck-\u003efindFiles();\n$browserCheck-\u003eexecute();\n\t\t\n// Retrieve an array of browsers and their usage counts\n$browserCheck-\u003egetBrowserStats();\n\n// Retrieve an array of unique session ids\n$browserCheck-\u003egetSessionsIds();\n\n// Retrieve an array of unique user agents\n$browserCheck-\u003egetUserAgents();\n```\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Testing\n\n``` bash\n$ composer test\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email owzie123@gmail.com instead of using the issue tracker.\n\n## Credits\n\n- [pxgamer][link-author]\n- [All Contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/pxgamer/log-browser-check.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-travis]: https://img.shields.io/travis/pxgamer/log-browser-check/master.svg?style=flat-square\n[ico-styleci]: https://styleci.io/repos/69864945/shield\n[ico-code-quality]: https://img.shields.io/codecov/c/github/pxgamer/log-browser-check.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/pxgamer/log-browser-check.svg?style=flat-square\n\n[link-packagist]: https://packagist.org/packages/pxgamer/log-browser-check\n[link-travis]: https://travis-ci.org/pxgamer/log-browser-check\n[link-styleci]: https://styleci.io/repos/69864945\n[link-code-quality]: https://codecov.io/gh/pxgamer/log-browser-check\n[link-downloads]: https://packagist.org/packages/pxgamer/log-browser-check\n[link-author]: https://github.com/pxgamer\n[link-contributors]: ../../contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowenvoke%2Flog-browser-check","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowenvoke%2Flog-browser-check","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowenvoke%2Flog-browser-check/lists"}