Mustaque Ahmed
Mustaque Ahmed

Reputation: 135

Run a Laravel Application With or Without a Key

I need a way to run a Laravel application in a client-server environment with a unique key or license key. If the client doesn't have a key, they cannot run this application. Even if they cannot break the code functionality in the source code, please help.

Upvotes: 2

Views: 2859

Answers (1)

Michal Rogozinski
Michal Rogozinski

Reputation: 1759

If the customer has access to the source code, they will always be able to bypass the license key check, however complex you will make it. PHP by default is not a compiled language and thus your requirement is not supported by the underlying architecture that Laravel is built on.

Having said that, there are third party compilers for PHP. Maybe they would be worth checking out, or consider using a solution that allows for compiling the source code - Java, .NET. Or, if that is an option, host the solution yourself, and let the customer be just a user/client of your hosted solution.

Upvotes: 2

Related Questions