Reputation: 924
I want to deploy my newly build Symfony2 project using capifony. After the initial setup with cap deploy:setup
, which worked just fine, all the needed files/folders were created.
But now when I want to cap deploy
the subdirectories aren't created.
Upvotes: 0
Views: 384
Reputation: 5519
I guess you use a Symfony2 version that relies on Composer to manage dependencies. In capifony 2.1.7 (last release), you can decide to use Composer to setup your vendors:
set :use_composer, true
Upvotes: 1