I have downloaded a bundle from internet bundle name is "PetkoparaCrudGeneratorBundle-master" i want use it in my current project, can anyone tell me how can i access multiple bundles in symfony.
Use Composer to Integrate your Bundles and then add the Bundle Directory to the Vendors of your project Example :
app/AppKernel.php
public function registerBundles()
{
$bundles = [
new Directory/.../yourBundle(),
}
composer.json
"require": {
"Directory/yourBundle": "^version"
},