Download the PHP package steven-fox/laravel-sqids without Composer

On this page you can find all versions of the php package steven-fox/laravel-sqids. 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-sqids

Sqids for Laravel.

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package brings Sqids functionality, with the option of multiple named configurations (alphabet and minimum encoding length), to your Laravel application. It's a batteries-included wrapper for the PHP Sqids package.

Features

Here are some quick examples.

Installation

You can install the package via composer:

You can publish the config file with:

Once the config file has been published, it is recommended to set your custom sqid configurations. This package allows you to use one or more named sqid configurations simultaneously and define one of them as a default. For each sqid configuration, you may specify a custom alphabet (which can provide a sense of uniqueness to your encoded sqids) and a minimum sqid length.

Usage

Prerequisite: Review the Sqids documentation

Although this package is easy to use, it's recommended to review the Sqids documentation to understand the underlying functionality. There are a number of good use cases for Sqids, but there are also many where they should not be used (for example, as encryption or to encode sensitive numbers).

Consider using the playground to get a feel for the encoded Sqids created by different alphabet + minLength combinations.

The Intended Pattern

It's intended to primarily use extensions of the EncodedSqid and DecodedSqid classes in your application. For example:

If you plan on using multiple Sqid configurations (for example, one configuration per model), then you will likely want to create your own Encoded/Decoded Sqid classes - one for each configuration - that extend the EncodedSqid and DecodedSqid classes provided by this package. By doing this, you can instantiate your objects with the correct Sqid configuration "baked in", meaning you will not have to call the $encodedSqid->usingConfigName('user-model')->... method everywhere.

Here's a simple example:

With that in place, you can now instantiate your UserDecodedSqid and the 'user' configuration will be used automatically. Once you perform an encode() operation, the resulting object will be an instance of your UserEncodedSqid, which will also reference the 'user' configuration automatically.

Making a custom EncodedSqid is essentially the same process.

Using EncodedSqids

Using the DecodedSqid

Using the Sqidder

In this package, the Sqidder (pronounced squid-er) is a Sqids implementation class that can perform encoding and decoding based on a Sqid configuration. At its core, it is a wrapper for the SqidsInterface implementation. Thus, it provides the encode() and decode() interface methods, along with an additional method from the ConfigBasedSqidder contract (original to this package) that permit selection of a specific coder for a particular Sqid configuration.

The EncodedSqid and DecodedSqid classes use the Sqidder internally and that is meant to be the primary interaction. However, it is also possible to use the Sqidder directly and a Facade is provided for easy access.

Canonical Sqids

The Sqidder does not perform Sqid validation when decoding to check if the encoded string is canonical. The EncodedSqid, however, does provide a validation option and is enabled by default when decoding.

Due to the Sqids algorithm, multiple encoded strings may decode to the same number(s). Thus, a canonical Sqid is one that originally came from your alphabet configuration. You can check if an encoded Sqid is canonical by decoding it into its number(s) and then re-encoding those numbers. If the original Sqid and the re-encoded Sqid are identical, then the original is canonical.

For example, using a standard alphabet, the encoded string 'Ul' will decode to the number [41]. However, re-encoding the number [41] produces a Sqid of 'qp'. Thus, the original Sqid of 'Ul' is not canonical and, in many circumstances, should be considered invalid.

Using Multiple Sqid Configurations

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-sqids with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/contracts Version ^10.0||^11.0
spatie/laravel-package-tools Version ^1.14.0
sqids/sqids Version ^0.4.1
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 steven-fox/laravel-sqids contains the following files

Loading the files please wait ....