nuclear/synthesizer

This package is abandoned and no longer maintained. No replacement package was suggested.

The markdown and text processor that Nuclear CMS needs.

0.9.4 2016-10-04 19:38 UTC

This package is not auto-updated.

Last update: 2020-11-27 22:18:42 UTC


README

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.