• Stars
    star
    292
  • Rank 141,706 (Top 3 %)
  • Language
    PHP
  • License
    BSD 3-Clause "New...
  • Created over 15 years ago
  • Updated about 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Generic HTTP applications approach for PHP5.3+ (inspired by Rack and WSGI)

AppServer, a set of components for building fast universal web-apps in PHP

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