FoW
FoW

Reputation: 125

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

Upvotes: 3

Views: 2797

Answers (2)

reafle
reafle

Reputation: 254

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.

Upvotes: 2

Amine
Amine

Reputation: 271

i dont know why you have to store your password in a config file. If you working behind a proxy, you have to type your password only in installation. If you don't want to use composer you have to download the bundle and add it to AppKernel.php. but the problem is that if your bundle depend of other library you will have some noise.

Upvotes: 0

Related Questions