paint-brush
5 ways to deploy PHP applicationsby@BuddyWorks
9,032 reads
9,032 reads

5 ways to deploy PHP applications

by BuddyJune 26th, 2017
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

<em>Disclaimer: </em><a href="https://buddy.works/" target="_blank"><em>Buddy.Works</em></a><em> is a tool that helps developers automate tests and deployments of their applications. In this article we’d like to compare the most common delivery workflows for PHP projects—and try to figure out which one is the best.</em>
featured image - 5 ways to deploy PHP applications
Buddy HackerNoon profile picture

Disclaimer: Buddy.Works is a tool that helps developers automate tests and deployments of their applications. In this article we’d like to compare the most common delivery workflows for PHP projects—and try to figure out which one is the best.

PHP delivery overview

Each single application differs one from another, just like the delivery process. The most frequent steps for PHP delivery usually look like this:

  1. Test app
  2. Download dependencies (Composer)
  3. Compile assets (Gulp/Webpack/Grunt)
  4. Deploy to server

Of course, more actions can be undertaken here. For instance, you may want to migrate the databases or restart your server via SSH — all of it depends on the project specifications and hardware that is used.

2 important things

Before we go further, there are two things that should be highlighted every single time the word “deployment” comes into play:

I. Keep everything in version control!

Application source, configuration files, documentation, db migration scripts —you should keep all of it safe and sound in the repo. Of course, there are exceptions to every rule (especially in IT), which brings us to the second rule:

II. Never keep dependencies and compiled apps in version control!

We explained the reasons why this shouldn’t be done here. Let’s call in the reason that frightens the developers the most (apart from being treated like a 24/7 IT service by their family).

If you want to find out more, check our guide at:

Buddy Guide - 5 ways to deploy PHP applications