Download the PHP package trigig/silex_fixed without Composer
On this page you can find all versions of the php package trigig/silex_fixed. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download trigig/silex_fixed
More information about trigig/silex_fixed
Files in trigig/silex_fixed
Download trigig/silex_fixed
More information about trigig/silex_fixed
Files in trigig/silex_fixed
Vendor trigig
Package silex_fixed
Short Description The PHP micro-framework based on the Symfony2 Components
License MIT
Homepage http://silex.sensiolabs.org
Package silex_fixed
Short Description The PHP micro-framework based on the Symfony2 Components
License MIT
Homepage http://silex.sensiolabs.org
Keywords microframework
Please rate this library. Is it a good library?
Informations about the package silex_fixed
Silex, a simple Web Framework
Silex is a PHP micro-framework to develop websites based on Symfony2 components:
<?php
require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application();
$app->get('/hello/{name}', function ($name) use ($app) {
return 'Hello '.$app->escape($name);
});
$app->run();
Silex works with PHP 5.3.3 or later.
Installation
The recommended way to install Silex is through Composer. Just create a
composer.json
file and run the php composer.phar install
command to
install it:
{
"require": {
"silex/silex": "~1.1"
}
}
Alternatively, you can download the silex.zip file and extract it.
More Information
Read the documentation for more information.
Tests
To run the test suite, you need Composer:
$ php composer.phar install --dev
$ vendor/bin/phpunit
Community
Check out #silex-php on irc.freenode.net.
License
Silex is licensed under the MIT license.
All versions of silex_fixed with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.3
trigig/pimple_fixed Version 2.1.*@dev
symfony/event-dispatcher Version >=2.4,<2.6-dev
symfony/http-foundation Version >=2.4,<2.6-dev
symfony/http-kernel Version >=2.4,<2.6-dev
symfony/routing Version >=2.4,<2.6-dev
trigig/pimple_fixed Version 2.1.*@dev
symfony/event-dispatcher Version >=2.4,<2.6-dev
symfony/http-foundation Version >=2.4,<2.6-dev
symfony/http-kernel Version >=2.4,<2.6-dev
symfony/routing Version >=2.4,<2.6-dev
The package trigig/silex_fixed contains the following files
Loading the files please wait ....