I have a Laravel
project and I'm using a composer
. I have a library in it and I've found a small bug there. It's my custom library under the git
.
What is the fastest way to push that changes?
The only way I see from now is to:
-
git clone
my library to some temporary folder - Remember and copy-paste all the changes(cause I was fixing but in the
/vendor
dir) - Run
composer update
Could be there any other, faster way? I'd like make changes right in the vendor dir and somehow push that changes.
P.S. As an answer I want to receive
No, it's impossible to do faster because of x, y, z.
or
Yes, you can. For that you have to do x, y, z.