In our Zend Studio 10 setup for a ZF2 project we have the Zend Framework 2 included as part of our PHP Include Path. But then the project is also setup with vendor/zendframework/zendframework/library/Zend/
which contains a duplicate of the library in the include path.
Every time the auto complete comes up there is two of everything. And in fact when I remove the Zend library from the folder everything continues working.
Keep in mind this is the default setup when creating a new project with the project wizard.
Is there any reason to keep the vendor/zendframework/zendframework/library/Zend/
folder?
Update: It looks like the PHP Unit configurations look for the library folder directly and not the include path entries.
From TestConfiguration.php.dist
define('ZF2_PATH', realpath(__DIR__ . '/../../../vendor/zendframework/zendframework/library/'));