Download the PHP package cybercog/laravel-optimus without Composer

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

Laravel Optimus

cog-laravel-optimus

Discord Releases Build StyleCI Code Quality License

Introduction

Laravel wrapper for the Optimus Library by Jens Segers with multiple connections support. Optimus is a small open-source library that generates short, unique, non-sequential ids from numbers. With this library, you can transform your internal id's to obfuscated integers based on Knuth's integer hash. It is similar to Hashids, but will generate integers instead of random strings. It is also super fast.

Contents

Features

Installation

First, pull in the package through Composer.

Register Package Manually (optional)

If you disabled package auto-discovery you can register it manually.

Include the service provider within app/config/app.php.

If you want you can use the facade. Add the reference in config/app.php to your aliases array.

Configuration

Laravel Optimus requires connection configuration. To get started, you'll need to publish config file:

This will create a config/optimus.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.

Default Connection Name

This option default is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is main.

Optimus Connections

This option connections is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like.

Optimus numbers generation

To get started you will need 3 keys in main connection;

Luckily for you, there is console command that can do all of this for you, just run the following command:

Copy-paste generated integers to your connection config.

Usage

OptimusManager

This is the class of most interest. It is bound to the ioc container as optimus and can be accessed using the Facades\Optimus facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of Graham Campbell's Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repository. Note that the connection class returned will always be an instance of Jenssegers\Optimus\Optimus.

Facades\Optimus

This facade will dynamically pass static method calls to the optimus object in the ioc container which by default is the OptimusManager class.

Providers\OptimusServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings.

Traits\OptimusEncodedRouteKey

This trait can be used in an Eloquent model to enable automatic route model binding. You can then type hint a model in a route closure or a controller and Laravel will try to find it based on the encoded ID.

Examples

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:

Encode ID

Decode ID

Alter Optimus connection

The Optimus manager will behave like it is a Jenssegers\Optimus\Optimus. If you want to call specific connections, you can do that with the connection method:

Dependency Injection

If you prefer to use dependency injection over facades like me, then you can inject the manager:

Implicit route model binding

To enable implicit route model binding based on the encoded ID, all you need to do is configure the prime numbers and use the Cog\Laravel\Optimus\Traits\OptimusEncodedRouteKey trait in your model.

If you don't want to use the default Optimus connection, you can specify a custom connection by adding an $optimusConnection property to you model.

Now you can type hint your model in a route closure or controller and Laravel will use the encoded ID to query the database.

Note: Implicit route model binding requires Laravel's Illuminate\Routing\Middleware\SubstituteBindings middleware, which is part of the web middleware group.

To generate URL's to these routes you can either get the encoded route key:

Or you can use named routes and pass it the model. Laravel will do the rest.

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Testing

Run the tests with:

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Contributors

@antonkomarev
Anton Komarev
@ivanvermeyen
Ivan Vermeyen
@tur-nr
Christopher Turner
@ahmedbally
Ahmed Bally

Laravel Optimus contributors list

Package was inspired by Laravel Hashids package.

This package is a wrapper for Optimus Library.

Alternatives

Feel free to add more alternatives as Pull Request.

License

🌟 Stargazers over time

Stargazers over time

About CyberCog

CyberCog is a Social Unity of enthusiasts. Research the best solutions in product & software development is our passion.

CyberCog


All versions of laravel-optimus with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
graham-campbell/manager Version ^5.0
illuminate/contracts Version ^8.0|^9.0|^10.0|^11.0
illuminate/support Version ^8.0|^9.0|^10.0|^11.0
jenssegers/optimus Version ^0.2.2
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 cybercog/laravel-optimus contains the following files

Loading the files please wait ....