Package Data | |
---|---|
Maintainer Username: | zyuskin_en |
Maintainer Contact: | e.zyuskin@mildberry.com (Egor Zyuskin) |
Package Create Date: | 2016-09-15 |
Package Last Update: | 2016-09-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:15:52 |
Package Statistics | |
---|---|
Total Downloads: | 592 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
JMS format service provider and facade for laravel 5.x framework
Install via composer
$ composer require mldberry/jms-format-laravel
Find the providers
array key in config/app.php
and register the JMSFormat Service Provider.
'providers' => array(
// ...
Mildberry\JMSFormat\JMSFormatServiceProvider::class,
)
After register service provider use facade JMSFormat
<?php
$content = JMSFormat::convert('html', 'jms', '<p>Test content</p>');
This library is under the MIT license. See the complete license in here