Is there a best practice for releasing production code for PHP?

I know with Java you can release the source code as a WAR or JAR but does PHP have something like this?

As our org grows I wanted to find a better way of releasing production code instead of the current process with is not acceptable.

Current Process:

  • Check New Code into SVN (Subversion)
  • Make backup of current production script and append it with .bak.date_time_stamp
  • Move new script into production (FTP, SSH, SFTP)

Need the ability to

  • revert changes
  • optional container (think JAR)
  • archive current production code
  • automate? this is a wish list option

Any other suggestions/options/practices that would be good to incorporate? Looking at changing the org process.

link|improve this question

By "release", do you mean for distribution, or use in your system? – Jonah Feb 11 '11 at 17:13
@Jonah use in our system. Didn't think about distribution but that's also something to consider – Phill Pafford Feb 11 '11 at 17:18
1  
Doesn't SVN provide everything you ask? – Your Common Sense Feb 12 '11 at 11:09
feedback

closed as not constructive by Jeremy Heiler, RepWhoringPeeHaa, CharlesB, Bill the Lizard May 22 at 12:22

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

The rough equivalent to War or Jar would be Phar. There is a tutorial by Cal Evans at

Won't go into other Deployment strategies, because those have been discussed before:

link|improve this answer
Does the Phar container have any issues that are common when using/running with Apache? Also to note we are running PHP 5.2.x – Phill Pafford Feb 11 '11 at 17:15
@Phill I've never used it, but IIRC its somewhat slower than unpacked PHP. Not sure if that applies when using a Bytecode cache though. I think there is a PECL package for no longer supported PHP versions, aka PHP < 5.3 – Gordon Feb 11 '11 at 17:17
feedback

Take a look at phar as a PHP alternative to jar/war; and at tools like phing for building/deploying releases (it's a PHP variant of ant)

link|improve this answer
Phing is based on Apache Ant. I found Ant, incredibly useful (and extensible) when working with Java, but I never used Maven. I've only recently started using Phing... but it feels very familiar and easy, and seems to provide the same levels of power and flexibility for building deployment scripts. I've not pushed it yet, and am looking forward to really putting it through its paces, but I'm very satisfied so far. – Mark Baker Feb 11 '11 at 17:20
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.