我从互联网套装名称下载了一个捆绑包是" PetkoparaCrudGeneratorBundle-master"我想在我当前的项目中使用它,任何人都可以告诉我如何在symfony中访问多个包。
答案 0 :(得分:0)
使用Composer集成Bundle,然后将Bundle Directory添加到项目的供应商示例:
应用程序/ AppKernel.php
public function registerBundles()
{
$bundles = [
new Directory/.../yourBundle(),
}
composer.json
"require": {
"Directory/yourBundle": "^version"
},