nuclear / synthesizer
The markdown and text processor that Nuclear CMS needs.
Requires
- php: >=5.5.9
- erusev/parsedown-extra: ~0.7
Requires (Dev)
- nuclear/documents: ~0.9
- orchestra/testbench: ~3.2
- phpunit/phpunit: ~4.0
Suggests
- laravel/framework: This package requires Laravel 5.
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.
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.
-
Pull this package in through Composer.
{ "require": { "nuclear/synthesizer": "~0.9" } }
-
In order to register Synthesizer Service Provider add
'Nuclear\Synthesizer\SynthesizerServiceProvider'
to the end ofproviders
array in yourconfig/app.php
file.'providers' => array( 'Illuminate\Foundation\Providers\ArtisanServiceProvider', 'Illuminate\Auth\AuthServiceProvider', ... 'Nuclear\Synthesizer\SynthesizerServiceProvider', ),
-
Publish the migrations and configuration files.
php artisan vendor:publish --provider:"Nuclear\Synthesizer\SynthesizerServiceProvider"
Do not forget to migrate the database.
-
Please check the tests and source code for further documentation.
License
Synthesizer is released under MIT License.