Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/phpunit.xml export-ignore
/phpunit.xml.dist export-ignore
/phpstan.neon export-ignore
/phpstan.neon.dist export-ignore
/phpcs.xml export-ignore
Comment thread
gustavofreze marked this conversation as resolved.
/phpcs.xml.dist export-ignore
/infection.json export-ignore
/infection.json.dist export-ignore
/Makefile export-ignore
/CONTRIBUTING.md export-ignore
/CHANGES.md export-ignore
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@

## Overview

Provides structured logging with support for correlation tracking and configurable sensitive data redaction.

Built on top of [PSR-3](https://www.php-fig.org/psr/psr-3), the library can be used anywhere a `LoggerInterface` is
expected.
Emits PSR-3 structured logs for PHP, with each entry carrying timestamp, component, correlation id, level, and a
Comment thread
gustavofreze marked this conversation as resolved.
structured data payload. Supports pluggable redactions for sensitive fields such as passwords, emails, phone numbers,
and identity documents. Built for consumption by log aggregators and SIEM pipelines in production environments.

<div id='installation'></div>

Expand Down Expand Up @@ -342,4 +341,4 @@ Logger is licensed under [MIT](LICENSE).
## Contributing

Please follow the [contributing guidelines](https://github.com/tiny-blocks/tiny-blocks/blob/main/CONTRIBUTING.md) to
contribute to the project.
contribute to the project.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tiny-blocks/logger",
"description": "Provides structured logging with support for correlation tracking and configurable sensitive data redaction.",
"description": "Emits PSR-3 structured logs for PHP, with correlation tracking and configurable sensitive data redaction.",
Comment thread
gustavofreze marked this conversation as resolved.
"license": "MIT",
"type": "library",
"authors": [
Expand Down
Loading