clicksco/commonmark-laravel

Trivial Laravel wrapper class for League\CommonMark
46
Install
composer require clicksco/commonmark-laravel
Latest Version:1.0.1
PHP:>=5.4.0
License:MIT
Last Updated:Jan 22, 2015
Links: GitHub  ·  Packagist
Maintainer: jonspark

CommonMark Laravel 4 Wrapper

Software License

Trivial Laravel 4 wrapper class for The PHP League's CommonMark package.

Install

Require the package with Composer

$ composer require clicksco/commonmark-laravel

Update app/config/app.php with the ServiceProvider and Facade

'providers' => [
    ...
    'Clicksco\CommonMark\ServiceProvider',
    ...
];
'aliases' => [
    ...
    'CommonMark' => 'Clicksco\CommonMark\Facade',
    ...
];

Usage

echo CommonMark::convertToHtml('# Hello, World!');

Testing

$ phpunit

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.