mitchellvanw / laravel-doctrine

NO LONGER MAINTAINED! A Doctrine 2 implementation that melts with Laravel
MIT License
187 stars 74 forks source link

support for multiple namespace for proxies #53

Closed nicopenaredondo closed 9 years ago

nicopenaredondo commented 10 years ago

does this package have a support for multiple namespace for proxies just like in the metadata in config.php

'metadata' => [
   base_path('app/models')
 ],

'proxy' => [
  'auto_generate' => false,
  'directory'     => [
     base_path('app/<vendor_name>/modules/<module_name_1>/proxy'),
     base_path('app/<vendor_name>/modules/<module_name_2>/proxy')
   ],
   'namespace'     => null
 ],
TomSta commented 9 years ago

https://github.com/mitchellvanw/laravel-doctrine/wiki/Metadata

mitchellvanw commented 9 years ago

@nicopenaredondo From what I can see on the Doctrine documentation this is not possible. If you can find it in the docs though, I'll happily add this. Thanks. Closing