I am currently using composer dependency manager for zendframework 2 along with twitter bootstrap , I able to successfully manage zendframework 2 but I am not able manage twitter bootstrap via composer .
The problem is composer downloads twitter bootstrap library to vender directory . This is not feasible I need composer to download twitter bootstrap to public folder and zendframework to vender folder . how to achieve this
Below is the current composer.json file that I am using .
{
"name": "zendframework/skeleton-application",
"description": "Skeleton Application for ZF2",
"license": "BSD-3-Clause",
"keywords": [
"framework",
"zf2"
],
"homepage": "http://framework.zend.com/",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*",
"twitter/bootstrap":"2.*"
},
"extra": {
"installer-paths": {
"public/bootstrap/": ["twitter/bootstrap", "twitter/bootstrap"],
"vender/zendframework" : ["zendframework/zendframework" ,"zendframework/zendframework"]
}
}
}
I am new to composer Please kindly suggest correct way of specifying path for each required library in composer.json file ,
The above code is throwing error as invalid format .
vendor/zendframework. Downvoting someone that's trying to help you instead of making your problem more clear to him, ain't the best way to get more help of said person... – Sam Feb 22 at 12:46