aip/aip

Application server in PHP

0.10.1 2013-09-21 08:23 UTC

This package is not auto-updated.

Last update: 2024-04-13 09:58:52 UTC


README

Latest Stable Version

Web server interface for PHP, inspired by Ruby’s Rack and Python’s WSGI. It provides a common API for connecting PHP frameworks and applications to webservers.

The main idea is, that your app, if built for this protocol, will be able to preload resources, preconnect to databases and response to requests really fast.

PHP 5.3+ is required, as it provides garbage collector for cyclic references, which is critical for long-running apps.

Installation

The recommended way to install AiP is through Composer. Just create a composer.json file and run the php composer.phar install command to install it:

{
    "require": {
        "aip/aip": "~0.10.0"
    }
}

Usage

Take a look at example.

  • MyApp.class.php — application class. "__invoke()" method is the entry point
  • aip.yaml — defines that this application should be served both as HTTP and SCGI

run with aip app [path/to/[aip.yaml]] command, test by pointing your browser to http://127.0.0.1:8080/

##Discuss

Please join our discussion group

There's also #appserver-in-php IRC-channel on freenode