An open API service indexing awesome lists of open source software.

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.

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.

![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/mpstr24/laravel-text-speak/run-tests.yml?branch=main)
![Packagist Version](https://img.shields.io/packagist/v/mpstr24/laravel-text-speak)
![Packagist Downloads](https://img.shields.io/packagist/dt/mpstr24/laravel-text-speak)

## 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/)