php/symfony/doctrine memory leak?

Tried doing $cupo->save(); $cupo->free(); $cupo = null; (But substituting my code) And I’m still getting memory overflows. Any other ideas, SO? Update: I created a new environment in my databases.yml, that looks like: all: doctrine: class: sfDoctrineDatabase param: dsn: ‘mysql:host=localhost;dbname=…….’ username: ….. password: ….. profiler: false The profiler: false entry disables doctrine’s query logging, that … Read more

How to specify Composer install path?

It seems that you can define the vendor dir to be something else (plugins in your case): { “config”: { “vendor-dir”: “plugins” } } Then, you might rename the package name to not have a level dir inside, like: “package”: { “name”: “sfGuardPlugin”, So, your composer.json should look like this: { “config”: { “vendor-dir”: “plugins” … Read more