核 / 合成器
此包已被弃用,不再维护。未建议替代包。
Nuclear CMS 需要的 markdown 和文本处理器。
0.9.4
2016-10-04 19:38 UTC
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
Nuclear CMS 需要的 markdown 和文本处理器。
此包是为 Nuclear CMS 设计的,它构成了其主要的 markdown 和文本处理功能。它是独立开发的,以实现个人开发、测试和可能的重用。
安装
安装 Synthesizer 很简单。
-
通过 Composer 引入此包。
{ "require": { "nuclear/synthesizer": "~0.9" } }
-
为了注册 Synthesizer 服务提供者,将
'Nuclear\Synthesizer\SynthesizerServiceProvider'
添加到你的config/app.php
文件中的providers
数组末尾。'providers' => array( 'Illuminate\Foundation\Providers\ArtisanServiceProvider', 'Illuminate\Auth\AuthServiceProvider', ... 'Nuclear\Synthesizer\SynthesizerServiceProvider', ),
-
发布迁移和配置文件。
php artisan vendor:publish --provider:"Nuclear\Synthesizer\SynthesizerServiceProvider"
别忘了迁移数据库。
-
请检查测试和源代码以获取更多文档。
许可证
Synthesizer 根据 MIT 许可证 发布。