Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install symfony2 bundle without composer

I had like to install a bundle in Symfony : FOSUserBundle

All search end up using composer.

I'm working in a company behind a proxy with authentication.

I can't write down my password in a config file as it would be on a shared files server.

So, i'd like to install a Bundle without using composer. What is the best way to achieve that task ?

Thank you for reading my poor english and spending time answering me.

FoW

like image 245
FoW Avatar asked Nov 16 '25 22:11

FoW


1 Answers

You can deploy the same project on your local machine, install all vendors using composer, and when it is set and done - upload all project files to the shared file server.

like image 122
reafle Avatar answered Nov 19 '25 15:11

reafle