I normally use PHPStorm for development, however I have noticed http://symfony.dubture.com/ plugin for eclipse that looks like it would make symfony2 development much more easy. So I wanted to give it a try.
However I for the life of me cannot get it working.
I have never used eclipse before, but here is the entire process I have gone through
- Download eclipse (latest version of eclipse classic juno)
- Install the symfony2 plugin (p2.dubture.com)
- install eclipse web development plugin
- Switch to PHP Perspective
- Create symfony project at existing location
- Enable javascript support
- Enable twig support
- Enable doctrine support
- PHP Build path is correctly set as according to the FAQ on the site
I let the DLTK finish indexing my project.
I open one of my twig views, and no code assist at all. {{path(' brings up nothing {% block brings up nothing {% extends brings up nothing, etc. I do have twig syntax highlighting so I know part of it is there.
Now, I go to one of my controllers
and type in
$product = $this->getDoctrine()->getRepository("
This does bring up code assitance and lists all the available bundles. So I select my bundles, but none of my entities appear, all it says is "No default proposals"
I do get code assist for $this->get("
If I rightclick on my project, go to properties, go to builders Doctrine, Symfony, Validation, Script Builder are all present and checked.. Do not see an entry for twig though.
Here is a pastebin of my eclipse log http://pastebin.com/CA76YvKf
I have tried cleaning the projects, repeatedly starting my entire process over and over again, even on different machines and always this exact same results
I know a lot of people are using it, so I must just be doing something wrong.. If anyone here has any suggestions that would be great.