{"id":18517821,"url":"https://github.com/femtopixel/monolog-csvhandler","last_synced_at":"2025-04-09T08:31:05.527Z","repository":{"id":62504067,"uuid":"73755669","full_name":"femtopixel/monolog-csvhandler","owner":"femtopixel","description":"CsvHandler for Monolog - Logging for PHP","archived":false,"fork":false,"pushed_at":"2024-05-02T16:05:33.000Z","size":50,"stargazers_count":9,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-09T11:16:33.469Z","etag":null,"topics":["csv","monolog","monolog-handler","php"],"latest_commit_sha":null,"homepage":"https://brands.jaymoulin.me/femtopixel/monolog-csvhandler/","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/femtopixel.png","metadata":{"files":{"readme":"README.mdown","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["jaymoulin"],"patreon":null,"open_collective":null,"ko_fi":"jaymoulin","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.paypal.me/jaymoulin","https://www.buymeacoffee.com/jaymoulin","https://www.tipeeestream.com/cursedware/donation","https://streamlabs.com/cursedware/tip"]}},"created_at":"2016-11-14T23:18:39.000Z","updated_at":"2024-05-02T16:05:37.000Z","dependencies_parsed_at":"2023-01-31T00:25:11.627Z","dependency_job_id":null,"html_url":"https://github.com/femtopixel/monolog-csvhandler","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femtopixel%2Fmonolog-csvhandler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femtopixel%2Fmonolog-csvhandler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femtopixel%2Fmonolog-csvhandler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femtopixel%2Fmonolog-csvhandler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/femtopixel","download_url":"https://codeload.github.com/femtopixel/monolog-csvhandler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223381994,"owners_count":17136292,"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":["csv","monolog","monolog-handler","php"],"created_at":"2024-11-06T17:09:28.901Z","updated_at":"2024-11-06T17:09:29.723Z","avatar_url":"https://github.com/femtopixel.png","language":"PHP","readme":"\u003e [!CAUTION]\n\u003e As-of 2021, this product does not have a free support team anymore. If you want this product to be maintained, please support my work.\n \n\u003e [!NOTE]\n\u003e (This product is available under a free and permissive license, but needs financial support to sustain its continued improvements. In addition to maintenance and stability there are many  desirable features yet to be added.)\n\n![logo](logo.png)\n\n# CsvHandler for Monolog - Logging for PHP [![Build Status](https://scrutinizer-ci.com/g/femtopixel/monolog-csvhandler/badges/build.png?b=master)](https://scrutinizer-ci.com/g/femtopixel/monolog-csvhandler/build-status/master)\n\n[![Latest Stable Version](https://img.shields.io/packagist/v/femtopixel/monolog-csvhandler.svg)](https://packagist.org/packages/femtopixel/monolog-csvhandler)\n[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.2-8892BF.svg?style=flat-square)](https://php.net/)\n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/femtopixel/monolog-csvhandler/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/femtopixel/monolog-csvhandler/?branch=master)\n[![Code Coverage](https://scrutinizer-ci.com/g/femtopixel/monolog-csvhandler/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/femtopixel/monolog-csvhandler/?branch=master)\n[![License](https://poser.pugx.org/femtopixel/monolog-csvhandler/license)](https://packagist.org/packages/femtopixel/monolog-csvhandler)\n[![PayPal donation](https://github.com/jaymoulin/jaymoulin.github.io/raw/master/ppl.png \"PayPal donation\")](https://www.paypal.me/jaymoulin)\n[![Buy me a coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png \"Buy me a coffee\")](https://www.buymeacoffee.com/jaymoulin)\n[![Buy me a coffee](https://ko-fi.com/img/githubbutton_sm.svg \"Buy me a coffee\")](https://www.ko-fi.com/jaymoulin)\n\nCsvHandler for Monolog sends your logs to CSV files. For more information on Monolog, see http://github.com/Seldaek/monolog\n\n## Installation\n\nInstall the latest version with\n\n```bash\n$ composer require femtopixel/monolog-csvhandler\n```\n\n## Basic Usage\n\n```php\n\u003c?php\n\nuse Monolog\\Logger;\nuse FemtoPixel\\Monolog\\Handler\\CsvHandler;\n\n// create a log channel\n$log = new Logger('name');\n$log-\u003epushHandler(new CsvHandler('path/to/your.csv', Logger::WARNING));\n\n// add records to the log\n$log-\u003eaddWarning('Foo');\n$log-\u003eaddError('Bar');\n```\n\n## About\n\n### Requirements\n\n- Monolog works with PHP 5.3 or above, and is also tested to work with HHVM.\n\n### Submitting bugs and feature requests\n\nBugs and feature request are tracked on [GitHub](https://github.com/fmetopixel/monolog-csvhandler/issues)\n\n### Author\n\nJay MOULIN\nSee also the list of [contributors](https://github.com/femtopixel/monolog-csvhandler/contributors) which participated in this handler.\n\n### License\n\nMonolog is licensed under the MIT License and so for this CsvHandler - see the `LICENSE` file for details\n","funding_links":["https://github.com/sponsors/jaymoulin","https://ko-fi.com/jaymoulin","https://www.paypal.me/jaymoulin","https://www.buymeacoffee.com/jaymoulin","https://www.tipeeestream.com/cursedware/donation","https://streamlabs.com/cursedware/tip","https://www.ko-fi.com/jaymoulin"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffemtopixel%2Fmonolog-csvhandler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffemtopixel%2Fmonolog-csvhandler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffemtopixel%2Fmonolog-csvhandler/lists"}