nuclearcms / Synthesizer

The markdown and text processor that Nuclear CMS needs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Synthesizer

The markdown and text processor that Nuclear CMS needs.


Build Status Total Downloads Latest Stable Version License

This package is intended for Nuclear CMS and it constitutes its main markdown and text processing functionality. It is developed separately to enable individual development, testing and possible reuse.

Installation

Installing Synthesizer is simple.

  1. Pull this package in through Composer.

    {
        "require": {
            "nuclear/synthesizer": "~0.9"
        }
    }
  2. In order to register Synthesizer Service Provider add 'Nuclear\Synthesizer\SynthesizerServiceProvider' to the end of providers array in your config/app.php file.

    'providers' => array(
    
        'Illuminate\Foundation\Providers\ArtisanServiceProvider',
        'Illuminate\Auth\AuthServiceProvider',
        ...
        'Nuclear\Synthesizer\SynthesizerServiceProvider',
    
    ),
  3. Publish the migrations and configuration files.

    php artisan vendor:publish --provider:"Nuclear\Synthesizer\SynthesizerServiceProvider"

    Do not forget to migrate the database.

  4. Please check the tests and source code for further documentation.

License

Synthesizer is released under MIT License.

About

The markdown and text processor that Nuclear CMS needs.

License:MIT License


Languages

Language:PHP 97.2%Language:JavaScript 2.8%