https://github.com/mpstr24/laravel-text-speak
Laravel package that extends Str abilities to include converting regular text to text speak.
https://github.com/mpstr24/laravel-text-speak
laravel laravel-package php8 strings
Last synced: about 2 months ago
JSON representation
Laravel package that extends Str abilities to include converting regular text to text speak.
- Host: GitHub
- URL: https://github.com/mpstr24/laravel-text-speak
- Owner: MPSTR24
- License: mit
- Created: 2025-03-12T20:45:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-12T20:57:19.000Z (about 1 year ago)
- Last Synced: 2025-03-12T21:32:15.256Z (about 1 year ago)
- Topics: laravel, laravel-package, php8, strings
- Language: PHP
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Text Speak
This package is designed build upon Str to allow you to convert text to text speak e.g. converting E's to 3's.



## Installation
Install the package via Composer:
```bash
composer require mpstr24/laravel-text-speak
```
## Usage/Examples
### Basic usage.
To use just to.
```bash
$text = Str::textSpeak('hello world');
echo $text
```
Which will output
```bash
h3ll0 w0rld
```
## Roadmap
- [x] Larastan goals
- [x] 5
- [x] 6
- [x] 7
- [x] 8
- [x] 9
## License
[MIT](https://choosealicense.com/licenses/mit/)