Skip to content
This repository was archived by the owner on Nov 15, 2020. It is now read-only.

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.

About

The markdown and text processor that Nuclear CMS needs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published