I have finished my code in PHP (using Laravel) and I would like to run it on a client's hosting. I can upload the files and config the db, not a biggy!
The problem is, they can see the code (I mean everything - Controllers, Models, and etc)
I know about Phar file but it seems there's no specific way for creating a Phar file for Laravel. I have checked this URL which is useful for applications using Composer: https://github.com/clue/phar-composer but I couldn't get it to work.
What I want is to actually upload the file in a way that nobody can see the code within. Something like JAR files in Java which contains all code inside. I'd like to know the ways that I can upload my files without being worried about my files being read or used by others.