Commit 4c01a361 authored by Fabien Potencier's avatar Fabien Potencier

bumped min PHP version to 5.3.9 to ease migration to the new validation component API

parent dfc7d4dd
......@@ -27,7 +27,7 @@ The recommended way to install Silex is through `Composer`_:
.. code-block:: bash
php composer.phar require silex/silex "~1.3"
composer require silex/silex "~1.3"
Alternatively, you can download the `silex.zip`_ file and extract it.
......
......@@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.9",
"pimple/pimple": "~1.0",
"symfony/event-dispatcher": "~2.3,<3.0",
"symfony/http-foundation": "~2.3,<3.0",
......
......@@ -4,7 +4,7 @@ Changelog
1.3.0 (2015-XX-XX)
------------------
* n/a
* bumped minimum version of PHP to 5.3.9
1.2.3 (2015-01-20)
------------------
......
......@@ -22,7 +22,7 @@ If you want more flexibility, use Composer_ instead:
.. code-block:: bash
composer require silex/silex:~1.2
composer require silex/silex:~1.3
Bootstrap
---------
......
......@@ -42,7 +42,7 @@ use Silex\EventListener\StringToResponseListener;
*/
class Application extends \Pimple implements HttpKernelInterface, TerminableInterface
{
const VERSION = '1.3.0-dev';
const VERSION = '1.3.0-DEV';
const EARLY_EVENT = 512;
const LATE_EVENT = -512;
......
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