Download the PHP package air-php/application without Composer
On this page you can find all versions of the php package air-php/application. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package application
Application
The application library includes abstract classes representing a web application.
Installation
Installation via Composer is recommended.
"require": {
"air-php/application": "dev-master"
}
Application
The Application
class is abstract, and as such, you must provide your own implementation.
<?php
use Air\Application\Application;
class MyApp extends Application
{
// Custom implementation here…
}
The application needs to be configured with a router, dispatcher and request:
<?php
$app = new MyApp;
$app->setRouter($router);
$app->setDispatcher($dispatcher);
$app->setRequest($request);
Finally, you can run the app:
$app->run();
All versions of application with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.0
phpunit/phpunit Version ~5.0
container-interop/container-interop Version ~1.0
air-php/http Version ~0.1
air-php/routing Version ~0.1
air-php/dispatcher Version ~0.1
phpunit/phpunit Version ~5.0
container-interop/container-interop Version ~1.0
air-php/http Version ~0.1
air-php/routing Version ~0.1
air-php/dispatcher Version ~0.1
The package air-php/application contains the following files
Loading the files please wait ....