friendsofvictoire / aggregaterating-widget
Victoire 聚合评分小部件
2.0.5
2017-10-03 14:38 UTC
Requires
- php: >=5.5.9
- kartik-v/bootstrap-star-rating: @dev
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2024-09-23 06:33:21 UTC
README
需要在Victoire CMS网站上添加聚合评分吗?
首先,您需要拥有有效的Symfony2 Victoire版本。然后,只需运行以下Composer命令
php composer.phar require friendsofvictoire/aggregaterating-widget
在您的AppKernel中声明您的组件
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new Victoire\Widget\AggregateRatingBundle\VictoireWidgetAggregateRatingBundle(), ); return $bundles; } }