I'm trying to upload my edited (custom) versions of some vendor packages Example I edited some code in
vendor/misd/linkify/src/Misd/Linkify
I changed a few lines to work for my project. The problem is when i push my project to github then deploy using envoyer , All the vendor files get reinstalled via composer update, thus grabbing from the GitHub repo
I need to be able to upload my own version of that specific vendor folder/file
I've tried whitelisting specific vendor file via gitignore , heres my original question Uploading Specific Vendor files with Laravel's Envoyer
But with no luck. Is this good practice, should I be going about it a different way? How can I get my modified version up to my server
via Luna