I am searching a way to secure the code of a bundle/plugin of Symfony. Is there any way to encrypt php code (even only actions) with IonCube, Zend Guard or SourceGuardian?
Thanks a lot.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Didn’t had a chance to encrypt Symfony2 bundle code but for Symfony1 there was simple trick to achieve that. S1 is scanning files looking for
class MyExampleClassstrings inside and it builds cache info based on that.To make encrypted source files work with framework you just need to add
class MyExampleClassas a comment to source file. Like i mention not sure if it works with S2 but its worth trying i guess.