This is a list of vendored Nginx and PHP packages made available by this buildpack. They are hosted on S3 and maintained by @mchung.
Nginx
PHP
WordPress downloaded directly from WordPress
Configure WordPress on Heroku to use specific versions of Nginx and PHP
$ git clone git://github.com/your_name/wordpress-on-heroku.git mydogblog
$ cd mydogblog
$ heroku create -s cedar
$ heroku labs:enable user-env-compile
$ heroku config:set NGINX_VERSION=1.5.0
$ heroku config:set PHP_VERSION=5.4.11
$ heroku config:set WORDPRESS_VERSION=3.5.1
$ heroku config:set BUILDPACK_URL=https://github.com/mchung/heroku-buildpack-wordpress.git
$ git push heroku master
Configure existing WordPress on Heroku to use a specific version of WordPress
$ cd existing_wp
$ heroku labs:enable user-env-compile
$ heroku config:set WORDPRESS_VERSION=3.6.2
$ git push heroku master
To request a new vendored package, please file an issue Note that WordPress does not need to be vendored, you can set the WORDPRESS_VERSION to install any version of WordPress.