Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/natthasath/demo-laravel-scramble
- Owner: natthasath
- Created: 2024-09-09T05:05:48.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T05:09:52.000Z (2 months ago)
- Last Synced: 2024-10-01T06:42:36.873Z (about 2 months ago)
- Topics: 10x, api, laravel, openapi, php, scramble
- Language: PHP
- Homepage: https://scramble.dedoc.co/
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```