mildberry / jms-format-laravel by zyuskin_en

JMS format service provider and facade for laravel 5.x framework
590
0
2
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-05-03 03:13:50
Package Statistics
Total Downloads: 590
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

jms-format-laravel

JMS format service provider and facade for laravel 5.x framework

Require

  • php >= 5.5
  • mildberry/jms-format >= 0.0.6
  • illuminate/support >= 5.2

Install

Install via composer

$ composer require mldberry/jms-format-laravel

Usage

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>');

License

This library is under the MIT license. See the complete license in here