aip / aip
Application server in PHP
Installs: 3 840
Dependents: 2
Suggesters: 0
Security: 0
Stars: 291
Watchers: 13
Forks: 23
Open Issues: 5
Requires
- php: >=5.3.3
- ext-mbstring: *
- symfony/console: ~2.3
- symfony/yaml: ~2.3
Requires (Dev)
- phpunit/phpunit: ~3.7
Suggests
- ext-pcntl: *
- ext-posix: *
README
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