Ok I see.
So, at the moment the only documented recommendation we have to deploy PHP projects is by using Heroku, have you tried it before?
Our two example PHP projects (The Multi-Page Site and the Sample Blog) also recommend these same steps:
Deploy & go live with Heroku
Once you have successfully signed up and installed the Heroku toolbelt:
Create a file with the name Procfile at your application root. Put the following code in the Procfile file:
web: vendor/bin/heroku-php-apache2 public
Create a new Heroku application
heroku create
Initialize a new Git repository
git initheroku git:remote -a your-heroku-app-name
Commit your code to the Git repository and deploy it to Heroku
git add .git commit -am "make it better"git push heroku master
Ensure you have at least one node running
heroku ps:scale web=1
You can now browse your application online
heroku open
Let me know if Is this useful for you