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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-id-obfuscator

evoMark company logo

Build status Total Downloads Licence


# 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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package evo-mark/laravel-id-obfuscator contains the following files

Loading the files please wait ....