Download the PHP package itlessons/php-application without Composer
On this page you can find all versions of the php package itlessons/php-application. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download itlessons/php-application
More information about itlessons/php-application
Files in itlessons/php-application
Download itlessons/php-application
More information about itlessons/php-application
Files in itlessons/php-application
Vendor itlessons
Package php-application
Short Description Simple PHP micro-framework
License MIT
Homepage http://www.itlessons.info
Package php-application
Short Description Simple PHP micro-framework
License MIT
Homepage http://www.itlessons.info
Keywords microframework
Please rate this library. Is it a good library?
Informations about the package php-application
php-application, a simple web framework
php-application is a very simple micro-framework designed for the study.
<?php
require_once __DIR__.'/../vendor/autoload.php';
$app = new Application();
$app->get('/hello/(name:str)', function ($name) use ($app) {
return 'Hello '.$app->escape($name);
});
$app->run();
php-application works with PHP 5.4 or later.
Installation
The recommended way to install php-application is through Composer:
php composer.phar require itlessons/php-application "*"
Alternatively, you can download the php-application.zip file and extract it.
More Information
Read the documentation for more information.
All versions of php-application with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.3
symfony/http-foundation Version *
twig/twig Version >=1.8,<2.0-dev
swiftmailer/swiftmailer Version >=4.1.2,<4.2-dev
doctrine/cache Version *
itlessons/php-database Version *
itlessons/php-ioc Version *
itlessons/php-routing Version *
symfony/http-foundation Version *
twig/twig Version >=1.8,<2.0-dev
swiftmailer/swiftmailer Version >=4.1.2,<4.2-dev
doctrine/cache Version *
itlessons/php-database Version *
itlessons/php-ioc Version *
itlessons/php-routing Version *
The package itlessons/php-application contains the following files
Loading the files please wait ....