Skip to content
This repository has been archived by the owner on Nov 15, 2020. It is now read-only.
/ Synthesizer Public archive

The markdown and text processor that Nuclear CMS needs.

License

Notifications You must be signed in to change notification settings

nuclearcms/Synthesizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.