I have the following composer.json:
{
"name": "fuel/fuel",
"type": "metapackage",
"description": "The FuelPHP framework",
"keywords": ["framework"],
"homepage": "http://fuelphp.com",
"license": "MIT",
"authors": [
{
"name": "FuelPHP Development Team",
"email": "team@fuelphp.com"
}
],
"require": {
"php": ">=5.3.3",
"monolog/monolog": "1.5.*",
"fuelphp/upload": "2.0.1",
"twig/twig": "1.15.1",
"vesselinv/fuel-sprockets": "1.0.x-dev"
},
"config": {
"vendor-dir": "vendor"
},
"scripts": {
"post-install-cmd": [
"php oil r install"
]
},
"minimum-stability": "dev"
}
My problem is, that composer automatically installs the sprockets packages to /fuel/packages/sprockets, but I have change the framework structure a little bit, so that my "package" dir is under /packages/. How can I change this composer behavior?
I need it only for "vesselinv/fuel-sprockets"!