How do I set up Bootstrap after downloading via Composer?

We have artisan command to publish the assets(CSS, JS,..). Something like this should work. php artisan asset:publish –path=”vendor/twitter/bootstrap/bootstrap/css” bootstrap/css php artisan asset:publish –path=”vendor/twitter/bootstrap/bootstrap/js” bootstrap/js i am not sure about the path.. But this should work.

How do I use a Git submodule with a Composer loaded library?

Unfortunately* Composer doesn’t support Git submodules, as the main aim of Composer is to provide a similar inter-project dependency functionality and it would be pointless to try to replicate submodules in Composer. I have the same problem that you are trying to solve, of developing a library while simultaneously developing the application that uses that … Read more