friendsofvictoire / triptych-widget
Victoire DCMS 三联画小部件
1.0.0
2017-04-03 12:42 UTC
Requires
- php: >=5.5.9
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2024-09-15 02:57:35 UTC
README
需要在Victoire CMS网站上添加三联画吗?
首先,您需要拥有有效的Symfony2 Victoire版本。然后,只需运行以下Composer命令
php composer.phar require friendsofvictoire/triptych-widget
在您的AppKernel中声明小部件
class AppKernel extends Kernel { public function registerBundles() { $bundles = array( ... new Victoire\Widget\TriptychBundle\VictoireWidgetTriptychBundle(), ); return $bundles; } }