Commit a238971e authored by Ricard Clau's avatar Ricard Clau

Merge remote-tracking branch 'upstream/master'

parents 34ddab52 87e0d21c
...@@ -9,7 +9,7 @@ Silex is a simple web framework to develop simple websites based on ...@@ -9,7 +9,7 @@ Silex is a simple web framework to develop simple websites based on
```php ```php
<?php <?php
require_once __DIR__.'/silex.phar'; require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application(); $app = new Silex\Application();
...@@ -20,12 +20,12 @@ $app->get('/hello/{name}', function ($name) use ($app) { ...@@ -20,12 +20,12 @@ $app->get('/hello/{name}', function ($name) use ($app) {
$app->run(); $app->run();
``` ```
Silex works with PHP 5.3.2 or later. Silex works with PHP 5.3.3 or later.
## Installation ## Installation
Installing Silex is as easy as it can get. Download the [`silex.phar`][2] file Installing Silex is as easy as it can get. Download the [`silex.zip`][2] file,
and you're done! extract it, and you're done!
## More Information ## More Information
...@@ -44,5 +44,5 @@ To run the test suite, you need [composer](http://getcomposer.org) and ...@@ -44,5 +44,5 @@ To run the test suite, you need [composer](http://getcomposer.org) and
Silex is licensed under the MIT license. Silex is licensed under the MIT license.
[1]: http://symfony.com [1]: http://symfony.com
[2]: http://silex.sensiolabs.org/get/silex.phar [2]: http://silex.sensiolabs.org/get/silex.zip
[3]: http://silex.sensiolabs.org/documentation [3]: http://silex.sensiolabs.org/documentation
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment