What is the best way to access Zend Autoloader inside my Symfony bundle so that I can use Zend Libraries ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using Zend components or any other 3rd party libraries inside a Symfony2 project is really easy.
1.) Download Zend and extract it into the “vendor” folder.
2.) Register Zend by adding the following into the $loader->registerPrefixes params
Please keep in mind to add the right path here…
3.) You are good to go and can now use Zend’s classes inside your Symyfony2 project.