Reputation: 17789
Is there a way to setup a composer.json file in order to deploy a full Symfony 2.3 app?
Suppose I have the app in the git repo https://[email protected]/myrepo/sfwebapp.git
Upvotes: 0
Views: 117
Reputation: 20193
As far as I know, composer is dependency manager, not deployment manager. Sure, you could:
BUT, You would need to manually:
So, bottom line, you could achieve it but it would be like reinventing the wheel.
Upvotes: 3