vladg / framework7-bundle
Symfony 扩展包,用于构建 iOS 和 Android 应用的移动 HTML 框架
dev-master
2017-06-12 14:41 UTC
Requires
- symfony/framework-bundle: >=2.1
This package is not auto-updated.
Last update: 2024-09-29 04:49:19 UTC
README
步骤 1:下载 Bundle
打开命令行,进入您的项目目录,并执行以下命令以下载此 Bundle 的最新稳定版本
$ composer require vladg/framework7-bundle:@dev
此命令要求您已全局安装 Composer,具体请参考 Composer 文档中的安装章节。
步骤 2:启用 Bundle
然后,通过将其添加到项目 app/AppKernel.php 文件中注册的 Bundle 列表来启用该 Bundle
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new vladg/framework7-bundle:@dev, ); // ... } // ... }