Alexar
Alexar

Reputation: 1878

PHP: What do you recommend me to compile my standalone (not web-based) PHP application?

I have developed an application in PHP that acts as a service; I mean it does not need to be run under a Web Server. I want a way to protect my libraries so I can release a commercial version along the open source one. What do you recommend to compile the code or any other method to achieve this purpose, please?

Upvotes: 0

Views: 228

Answers (2)

David Kuridža
David Kuridža

Reputation: 7207

We have used Zend Guard on one of our projects due to such requirement. Aside from minor code modifications (removing autoloader and similar), it worked out well. The only downside is the licence price, but since it was paid by client as it was their request, we had no problems with that.

Update: Forgot earlier, project was mostly web based app, but there was around 8-10% of it CLI, and there was no problem with it either.

Upvotes: 1

ifaour
ifaour

Reputation: 38125

Something like this: http://www.phpcompiler.org/

Upvotes: 0

Related Questions