alexusmai / laravel-purifier by alexusmai

HTML Purifier for Laravel 5
4,353
2
1
Package Data
Maintainer Username: alexusmai
Maintainer Contact: alexusmai@gmail.com (Alex)
Package Create Date: 2017-02-07
Package Last Update: 2020-09-09
Language: PHP
License: MIT
Last Refreshed: 2024-04-30 15:01:01
Package Statistics
Total Downloads: 4,353
Monthly Downloads: 5
Daily Downloads: 0
Total Stars: 2
Total Watchers: 1
Total Forks: 2
Total Open Issues: 0

HTMLPurifier - Laravel 5 package

Latest Stable Version Total Downloads Latest Unstable Version License

HTML Purifier is a standards-compliant HTML filter library written in PHP.

About HTML Purifier - http://htmlpurifier.org/

Installation

Composer

composer require alexusmai/laravel-purifier

If you have Laravel 5.4 or earlier version, then add service provider to config/app.php and

Alexusmai\LaravelPurifier\LaravelPurifierServiceProvider::class,

add alias.

'Purifier' => Alexusmai\LaravelPurifier\Facades\PurifierFacade::class,

Publish config file (purifier.php)

php artisan vendor:publish --provider="Alexusmai\LaravelPurifier\LaravelPurifierServiceProvider"

Usage

Use default settings (config/purifier.php - default)

// string
Purifier::clean($text);

// array
Purifier::clean(['text1', 'text2', 'text3']);

// or use helper function
purifier($text);

Or you can create your own settings in configuration file (config/purifier.php)

Purifier::clean($text, 'my-settings-name');

purifier($text, 'my-settings-name');

Or you can use dynamic configuration

Purifier::clean($text, ['HTML.Allowed' => 'div,br,span']);

purifier($text, ['HTML.Allowed' => 'div,br,span']);