Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/natthasath/demo-laravel-scramble

Laravel Scramble is a package that generates random strings to obfuscate data for testing or security purposes. It offers customizable length and character sets to suit various needs. Ideal for protecting sensitive information or creating dummy data in Laravel applications.
https://github.com/natthasath/demo-laravel-scramble

10x api laravel openapi php scramble

Last synced: about 1 month ago
JSON representation

Laravel Scramble is a package that generates random strings to obfuscate data for testing or security purposes. It offers customizable length and character sets to suit various needs. Ideal for protecting sensitive information or creating dummy data in Laravel applications.

Awesome Lists containing this project

README

        

# 🎉 DEMO Laravel Scramble

Laravel Scramble is a package that generates random strings to obfuscate data for testing or security purposes. It offers customizable length and character sets to suit various needs. Ideal for protecting sensitive information or creating dummy data in Laravel applications.

![version](https://img.shields.io/badge/version-1.0-blue)
![rating](https://img.shields.io/badge/rating-★★★★★-yellow)
![uptime](https://img.shields.io/badge/uptime-100%25-brightgreen)

### 🚀 Setup

- Create Project

```shell
composer create-project laravel/laravel example-app
```

- Install Package

```shell
composer require dedoc/scramble
```

- Configure Environment

```shell
cp .env.example .env
```

- Vendor Publish

```shell
php artisan vendor:publish --provider="Dedoc\Scramble\ScrambleServiceProvider" --tag="scramble-config"
```

- Migrate

```
php artisan migrate --seed
```

### 🏆 Run

- [http://localhost:8000/docs/api](http://localhost:8000/docs/api) username : `admin` password : `admin`

```shell
php artisan serve
```