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
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ composer require respect/string-formatter

## Formatters

| Formatter | Description |
| -------------------------------------------- | ------------------------------------------------ |
| [MaskFormatter](docs/MaskFormatter.md) | Range-based string masking with Unicode support |
| [PatternFormatter](docs/PatternFormatter.md) | Pattern-based string filtering with placeholders |
| Formatter | Description |
| ---------------------------------------------------- | --------------------------------------------------- |
| [MaskFormatter](docs/MaskFormatter.md) | Range-based string masking with Unicode support |
| [PatternFormatter](docs/PatternFormatter.md) | Pattern-based string filtering with placeholders |
| [PlaceholderFormatter](docs/PlaceholderFormatter.md) | Template interpolation with placeholder replacement |

## Contributing

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "A powerful and flexible way of formatting and transforming strings",
"require": {
"symfony/polyfill-mbstring": "^1.33",
"php": "^8.5"
"php": "^8.5",
"respect/stringifier": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
Expand Down
Loading