I have a PHP library that I've put up on packagist.org. I'd like to exclude certain files from the package (e.g. a couple of JARs, and my tests), so people depending on my library don't have to download them.
I've put the following in my composer.json:
"archive": {
"exclude": ["/test", "composer.phar", "wiremock"]
}
That doesn't seem to change the contents of the downloaded dependency though.
Does Composer support the feature that I want? And what does my archive/exclude config do?