corepos-demo-poser/composer.json
Lance Edgar ef724a65e0 Hopefully fix composer-components path issue ?
fannie/src/javascript/composer-components was not getting the
necessary files, and i noticed the upstream composer.json used a
different config style for mapping these paths.  so copied that
snippet and hoping this works...

not clear why i would not have noticed that mapping before, or why i
ignored if so..?
2023-06-09 15:05:13 -05:00

36 lines
970 B
JSON

{
"name": "rattail/corepos-demo-poser",
"description": "Poser demo for CORE-POS",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Lance Edgar",
"email": "lance@edbob.org"
}
],
"require": {
"wikimedia/composer-merge-plugin": "^2.1",
"rattail/posterior": "^0.1.1"
},
"extra": {
"installer-types": ["component"],
"installer-paths": {
"../IS4C/fannie/src/javascript/composer-components/{$name}/": ["type:component"]
},
"merge-plugin": {
"require": [
"../IS4C/composer.json"
]
}
},
"config": {
"vendor-dir": "../IS4C/vendor/",
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true,
"corepos/composer-installer": true,
"wikimedia/composer-merge-plugin": true
}
}
}