sonofliberty / news-bundle
0.1.1
2019-02-24 13:11 UTC
Requires
- php: ^7.2
- doctrine/orm: ^2.5
- knplabs/knp-paginator-bundle: ^2.8
- sonata-project/admin-bundle: ^3.20
- sonata-project/seo-bundle: ^2.2
- sonata-project/translation-bundle: ^2.4
- stof/doctrine-extensions-bundle: ^1.3
- symfony/symfony: >=3.3
- vich/uploader-bundle: ^1.7
This package is auto-updated.
Last update: 2021-01-26 04:36:03 UTC
README
Symfony 包具有简单的博客/发布功能
安装
-
通过 composer 安装
composer require sonofliberty/news-bundle
-
启用包
// app/AppKernel.php public function registerBundles() { return array( // ... new SonOfLiberty\NewsBundle\SonOfLibertyNewsBundle(), new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(), new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(), // needed for translations // ... ); }
-
配置
# app/config/config.yml son_of_liberty_news: author: class: Acme\AcmeBundle\Entity\User # optional
-
导入路由
# app/config/routing.yml son_of_liberty_news: prefix: /news resource: '@SonOfLibertyNewsBundle/Resources/config/routing.yaml'