Download the PHP package vlados/laravel-unique-urls without Composer

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

Unique Urls for Laravel

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

Generate unique urls for blogs, ecommerce and platforms without prefix. Laravel

Goals:

Installation

You can install the package via composer:

You can publish and run the migrations with:

Usage

Configuration

You can publish the config file with:

There will create unique-urls.php with:

Prepare your model

In your Model add these methods:

The method for handling the request:

Routes

And last, add this line at the end of your routes/web.php

Batch import

If for example you have category tree and you need to import all the data before creating the urls, you can disable the automatic generation of the url on model creation To disable automatically generating the urls on create or update overwrite the method isAutoGenerateUrls in the model:

and call generateUrl() later like this:

or if you want to disable it on the go, use

Livewire

To use Livewire full-page component to handle the request, first set in urlHandler() function in your model:

Example livewire component:

API

Methods Description Parameters
generateUrl() Generate manually the URL
urlStrategy The strategy for creating the URL for the model $language, $locale
isAutoGenerateUrls() Disable generating urls on creation, globally for the model
disableGeneratingUrlsOnCreate() Disable generating urls on creation
Properties
relative_url The url path, relative to the site url
absolute_url The absolute url, including the domain
Relations
urls() All the active urls, related to the current model

Commands

urls:generate

This command generates unique URLs for the specified model or all models in the application that implement the HasUniqueUrls trait.

Usage:

urls:doctor

This command checks if all models in the application have implemented the HasUniqueUrls trait and the required functions correctly.

Usage:

Checks

Changelog

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

Contributing

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer. Format: <type>(<scope>): <subject>

<scope> is optional

More Examples:

References:

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-unique-urls with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/contracts Version ^9.0|^10.0|^11.0
spatie/laravel-model-info Version ^1.4|^2.0
spatie/laravel-package-tools Version ^1.9.2|^2.0
spatie/laravel-translatable Version ^6.0|^7.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 vlados/laravel-unique-urls contains the following files

Loading the files please wait ....