raindrop / syntax-highlight-bundle
Raindrop Symfony 语法高亮 Bundle
1.3.0
2018-04-17 23:39 UTC
Requires
- php: >=5.3.3
- symfony/framework-bundle: >=2.1.0,<4
This package is not auto-updated.
Last update: 2024-09-14 13:57:10 UTC
README
#SyntaxHighlightBundle
####本 Bundle 包含 Code Mirror js 库,用于 textarea 代码高亮。文档和示例可在 Code Mirror 官方网站 找到。
Twig 高亮模式已纳入路线图。
===
安装:
首先将依赖添加到您的 composer.json
文件中
"require": {
...
"raindrop/syntax-highlight-bundle": "dev-master"
},
然后使用以下命令安装 Bundle
php composer.phar update
在您的应用程序内核中启用 Bundle
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Raindrop\SyntaxHighlightBundle\RaindropSyntaxHighlightBundle(), ); }
现在安装资源
php app/console assets:install [--symlink]