Deploying a web-app Docker container.
The docker-compose config file adds a temp Composer container, that reads from a ./html/composer.json file.
I have added the selectize npm strings for installation as another entry to my "require" key/value pair, trying a few different versions:
There are some other repos, so I have also used their lower 0.12.6 version. This also does not work.
When I use the first option, in the temp composer container, the log file is:
, , [RuntimeException]
, require.@selectize/selectize is invalid, it should have a vendor name, a forward slash, and a package name. The vendor and package name can be words separated by -, . or _. The complete name should match "^a-z0-9/a-z0-9$". , , ,
The full composer.json file is:
{
"require": {
"mongodb/mongodb": "^1.8.0",
"vlucas/phpdotenv": "^5.3.0",
"auth0/auth0-php": "^7.9.0",
"@selectize/selectize": "^0.13.5"
},
"provide" : {
"ext-mongodb": "*"
}
}