Coder Social home page Coder Social logo

danny-larsen / php-buildpack Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cloudfoundry/php-buildpack

0.0 2.0 0.0 3.97 MB

A CloudFoundry Build Pack for PHP.

License: Apache License 2.0

Python 1.57% Shell 0.11% Ruby 0.07% PHP 97.29% CSS 0.52% JavaScript 0.20% ApacheConf 0.02% Perl 0.08% HTML 0.14% Nginx 0.01% Groff 0.01%

php-buildpack's Introduction

Cloud Foundry PHP Buildpack

A buildpack for Cloud Foundry to deploy PHP based applications.

30 Second Tutorial

Getting started with the buildpack is easy. With the cf command line utility installed, open a shell, change directories to the root of your PHP files and push your application using the argument -b https://github.com/cloudfoundry/php-buildpack.git.

Example:

mkdir my-php-app
cd my-php-app
cat << EOF > index.php
<?php
  phpinfo();
?>
EOF
cf push -m 128M -b https://github.com/cloudfoundry/php-buildpack.git my-php-app

Please note that you should change my-php-app to some unique name, otherwise you'll get an error and the push will fail.

The example above will create and push a test application, "my-php-app", to Cloud Foundry. The -b argument instructs CF to use this buildpack. The remainder of the options and arguments are not specific to the buildpack, for questions on those consult the output of cf help push.

Here's a breakdown of what happens when you run the example above.

  • On your PC...
    • It'll create a new directory and one PHP file, which calls phpinfo()
    • Run cf to push your application. This will create a new application with a memory limit of 128M (more than enough here) and upload our test file.
  • On Cloud Foundry...
    • The buildpack is executed.
    • Application files are copied to the htdocs folder.
    • Apache HTTPD & PHP 5.4 are downloaded, configured with the buildpack defaults and run.
    • Your application is accessible at the URL http://.cfapps.io (assuming your targeted towards Pivotal Web Services).

More Information

While the 30 Second Tutorial shows how quick and easy it is to get started using the buildpack, it skips over quite a bit of what you can do to adjust, configure and extend the buildpack. The following docs and links provide a more in-depth look at the buildpack.

Supported Software

  • Composer
    • Composer 0.8
  • Web servers
    • Apache 2.4
    • Nginx 1.5, 1.6, 1.7
  • PHP Versions
    • PHP 5.4, 5.5, 5.6
    • HHVM 3.2
  • PHP Runtimes
    • php-cli
    • php-cgi
    • php-fpm
    • hhvm
  • PHP Extensions
    • amqp
    • apc
    • apcu
    • bz2
    • curl
    • dba
    • exif
    • fileinfo
    • ftp
    • gd
    • gettext
    • gmp
    • igbinary
    • imagick
    • imap
    • intl
    • ioncube
    • ldap
    • lua
    • mailparse
    • mbstring
    • mcrypt
    • memcache
    • memcached
    • mongo
    • msgpack
    • mysql
    • mysqli
    • opcache
    • openssl
    • pdo
    • pdo_mysql
    • pdo_pgsql
    • pdo_sqlite
    • pgsql
    • phalcon
    • phpiredis
    • pspell
    • redis
    • snmp
    • soap
    • sockets
    • suhosin
    • sundown
    • twig
    • xcache
    • xdebug
    • xhprof
    • xsl
    • yaf
    • zip
    • zlib
    • zookeeper
  • Third-Party Modules
    • New Relic, in connected environments only.

Features

Here's a list of some special features of the buildpack.

  • supports running commands or migration scripts prior to application startup
  • download location is configurable, allowing users to host binaries on the same network (i.e. run without an Internet connection)
  • supports an extension mechanism that allows the buildpack to provided additional functionality
  • allows for application developers to provide custom extensions
  • easy troubleshooting with the BP_DEBUG environment variable

Examples

Here are some example applications that can be used with this buildpack.

  • php-info This app has a basic index page and shows the output of phpinfo()
  • PHPMyAdmin A deployment of PHPMyAdmin that uses bound MySQL services
  • Wordpress A deployment of Wordpress that uses bound MySQL service
  • CodeIgniter CodeIgniter tutorial application running on CF
  • Stand Alone An example which runs a stand alone PHP script
  • pgbouncer An example which runs the pgbouncer process in the container to pool db connections.
  • phalcon An example which runs a Phalcon based application.
  • composer An example which uses Composer.

Getting Help

If you have questions, comments or need further help with the buildpack you can post to the vcap-dev mailing list. It's a good place for posting question on all of the open source Cloud Foundry components, like this buildpack. Alternatively, if you're using Pivotal Web Services with the buildpack, you could post to the support forums.

License

The Cloud Foundry PHP Buildpack is released under version 2.0 of the Apache License.

Contributing

Run the Tests

See the Machete CF buildpack test framework for more information.

Package your own buildpack from this repo

./bin/cf-buildpack-build [ online | offline ]

Pull Requests

  1. Fork the project
  2. Submit a pull request

Reporting Issues

This project is managed through Github. If you encounter any issues, bug or problems with the buildpack please open an issue.

The project backlog is on Pivotal Tracker

php-buildpack's People

Contributors

chregu avatar flavorjones avatar jbcpollak avatar jtarchie avatar karasaj avatar squeedee avatar styeung avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.