Reputation: 23
We already have in our project "jquery" and "bootstrap" (we downloaded this libs along time a go and are incorporated to our project already, but not via composer) and we are trying to install via composer another package that requires us to have jquery and bootstrap like we show in the code below.
The question is, how we can skip this requirements to avoid having duplicated libraries in our project?
"require": {
"symfony/symfony": "2.3.*",
"symfony/assetic-bundle": "2.3.*",
"leafo/lessphp": "0.3.*",
"twbs/bootstrap": "2.3.*",
"components/jquery": "1.*",
"ptachoire/cssembed": "v1.0.0"
},
We are talking about a Symfony2 project.
Thanks!
Upvotes: 0
Views: 44
Reputation: 12306
Install this packages via composer, and reorganize your code for using bootstrap from vendor
dir. I think, it's a better solution for you.
Upvotes: 1