You can include certain files in the current package using the filesstartup strategy :
{
"autoload": {
"files": [
"path/to/my/file.php"
]
}
}
If you need to require certain files from the package that you installed with the composer, this is not possible. It is also not required, since files are not loaded into memory if you do not use them in your code.
.