On Fri, May 31, 2013 at 2:32 PM, whisher <[email protected]> wrote: > Thanks :) > but if don't us composer > init_autoloader do all the work ?
Yes. If you do a "clone --recursive", ZF2 gets installed in vendor/ZF2/, and we have a rule in init_autoloader.php to look there if Composer's autoloader is not detected. The alternate path is: - Download the zip file for the skeleton application - Unpack the zip file - Download the zip/tgz file for ZF2 - Unpack the zip/tgz file for ZF2 into vendor/ZF2/ of your skeleton application That's painful, though. Using "git clone --recursive" or Composer is far easier and less error-prone. -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/ PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc -- List: [email protected] Info: http://framework.zend.com/archives Unsubscribe: [email protected]
