Bundle Bundle の初期化 新しい Bundle を作るには、 Console コマンドで以下のように行う。 $ php app/console init:bundle "{MyOrg}/MyBdlBundle" src Bundle の組み込み app/autoload.php にパスを追加する。 $loader->registerNamespaces(array( ... 'MyBdl' => __DIR__.'/../src', )); app/AppKernel.php に Bundle を登録する。 $bundles = array( ... new MyOrg\MyBdlBundle\MyOrgMyBdlBundle(), ); Entity マッピングの登録 必要であれば doctrine.orm の値を追加しておく。 # app/config/config.yml