Reputation: 3960
I'm developing an application using Laravel framework and using some packagist / composer packages. Will HHVM be able to handle that, I heard that HHVM doesn't run all php functions or something.. If no, how can I optimize my app to use HHVM without problems?
Upvotes: 2
Views: 2341
Reputation: 4144
Laravel is full supported at HHVM, as you can read at the list of supported frameworks.
So if you want to run your application on HHVM you must test your code against HHVM. And take care of the used PHP extensions, the number of extensions supported by HHVM is growing every day, you maybe some are missing.
Upvotes: 2