Download the PHP package evo-mark/laravel-id-obfuscator without Composer
On this page you can find all versions of the php package evo-mark/laravel-id-obfuscator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download evo-mark/laravel-id-obfuscator
More information about evo-mark/laravel-id-obfuscator
Files in evo-mark/laravel-id-obfuscator
Download evo-mark/laravel-id-obfuscator
More information about evo-mark/laravel-id-obfuscator
Files in evo-mark/laravel-id-obfuscator
Vendor evo-mark
Package laravel-id-obfuscator
Short Description Obfuscate your IDs when sending them to the frontend
License MIT
Homepage https://github.com/evo-mark/laravel-id-obfuscator
Package laravel-id-obfuscator
Short Description Obfuscate your IDs when sending them to the frontend
License MIT
Homepage https://github.com/evo-mark/laravel-id-obfuscator
Please rate this library. Is it a good library?
Informations about the package laravel-id-obfuscator
# Laravel ID Obfuscator Incrementing primary keys may reveal more than you wish in a public-facing application. Order IDs can reveal your sales volume to competitors and User IDs can invite enumeration attacks. This package implements a two-way hashing on `Obfuscatable` models and converts an ID of, say, `7` into an ID of `fh38aj2e` when it travels to the frontend and converts it back on return. > Warning: This package only obfuscates IDs and should not be used if secure encryption of identifiers is required ## Installation ## Models ### Usage Using the `Obfuscatable` trait provides automatic route model binding with decoding and then automatic encoding when the primary key is sent to the frontend `Obfuscatable` models will also feature automatic decoding when using the model's `find`-style functions: e.g. `find`, `findOrFail`, `findMany`, `findOrNew`, `findOr` ## Validation **Laravel ID Obfuscator** comes with a built-in rule extension for validating incoming obfuscated ids, simply: ## Facade You can access the encoding and decoding features anytime via the provided facade. ## Config You can publish the package config by running the following Artisan command: | Setting | Type | Default | Description | | -------- | ------ | ----------------------- | ---------------------------------------- | | seed | string | laravel-id-obfuscator | A seed string for the encoder | | length | int | 8 | The amount of chars to pad the output to | | alphabet | string | [a-zA-Z0-9] (as string) | The alphabet to use when encoding IDs | ## Q & A 1. Why not use UUIDs? - UUIDs can be [Bad for database performance](https://www.danielfullstack.com/article/stop-using-uuids-in-your-database), whereas this obfuscation only runs when data bridges between the backend and the frontend of your application. ## Limitations - Laravel ID Obfuscator can only be used on incrementing primary keys - Since this package overrides the `newEloquentBuilder` method on obfuscated models, it is incompatible with any other packages that also do the same. Some examples might include: - [mikebronner/laravel-model-caching](https://github.com/mikebronner/laravel-model-caching) - [grimzy/laravel-mysql-spatial](https://github.com/grimzy/laravel-mysql-spatial) - [fico7489/laravel-pivot](https://github.com/fico7489/laravel-pivot) - [spatie/laravel-query-builder](https://github.com/spatie/laravel-query-builder) - [dwightwatson/rememberable](https://github.com/dwightwatson/rememberable) - [chelout/laravel-relationship-events](https://github.com/chelout/laravel-relationship-events) - [lazychaser/laravel-nestedset](https://github.com/lazychaser/laravel-nestedset) - Presently, if an `Obfuscatable` model appears as part of another model as a foreign key, it will not be obfuscated
All versions of laravel-id-obfuscator with dependencies
PHP Build Version
Package Version
Requires
php Version
^8.1
illuminate/support Version ^8.0|^9.0|^10.0|^11.0|^12.0
hashids/hashids Version ^5.0
illuminate/support Version ^8.0|^9.0|^10.0|^11.0|^12.0
hashids/hashids Version ^5.0
The package evo-mark/laravel-id-obfuscator contains the following files
Loading the files please wait ....