Download the PHP package accentinteractive/laravel-disallowlister without Composer
On this page you can find all versions of the php package accentinteractive/laravel-disallowlister. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download accentinteractive/laravel-disallowlister
More information about accentinteractive/laravel-disallowlister
Files in accentinteractive/laravel-disallowlister
Package laravel-disallowlister
Short Description Validate data against one or multiple disallowlists, using the built-in Laravel validator or by calling the facade directly. Supports wildcards.
License MIT
Homepage https://github.com/accentinteractive/laravel-disallowlister
Informations about the package laravel-disallowlister
Disallowlister for Laravel.
Effortlessly test strings against any array of disallowed strings. Supports fnmatch
wildcards, like * and ?.
accentinteractive/disallowlister
contains both a facade Disallowlister
and custom validation rule disallowlister
. You can set a default array of disallowed strings in config, or add and remove disallowed strings using Disallowlister:add()
and Disallowlister:remove()
This Laravel-specific package tests a string against a disallowlist. It is a Laravel implementation of the platform agnostic accentinteractive/disallowlister
.
If you are looking for a framework agnostic implementation, see https://github.com/accentinteractive/disallowlister
For a list of all options, see https://github.com/accentinteractive/disallowlister#readme.
The isDisallowed()
method can use wildcards, like * and ?.
Under the hood, accentinteractive/disallowtester
uses fnmatch()
, so you can use the same wildcards as in that php function (the globbing wildcard patterns):
*sex*
disallows sex, sexuality and bisexual.cycle*
disallows cycle and cycles, but not bicycle.m[o,u]m
disallows mom and mum, but allows mam.-
m?n
disallows man and men, but allows moon. - Installation
- Examples
- Config settings
Installation
You can install the package via composer:
Optionally you can publish the config file with:
Usage
Set the disallowlist in config
- Publish the config file, running
php artisan vendor:publish --provider="Accentinteractive\LaravelDisallowlister\LaravelDisallowlisterServiceProvider" --tag="config"
- Set an default array of disalllowed strings in
disallowlister.lists.default
- If you wish to use more than one disallowlist, you can add additional arrays of disalllowed strings to
disallowlister.lists
, likedisallowlister.lists.my_list
Use the disallowlister validation rule
By default, the validator uses the default disallow list.
However, you can also pass to the validator which disallowlist to use.
Case sensitivity
By default, matching is not case sensitive. You can set case sensitivity in confg
Whole word checking
By default the entire string is checked. You can set to check word for word in config.
Use the class directly
Testing
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Joost van Veen
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-disallowlister with dependencies
accentinteractive/disallowlister Version ^0.4
illuminate/console Version ^6.0|^7.0|^8.0
illuminate/filesystem Version ^6.0|^7.0|^8.0
illuminate/support Version ^6.0|^7.0|^8.0