Commit 3732ec18 authored by Fabien Potencier's avatar Fabien Potencier

merged branch besnikb/master (PR #380)

Commits
-------

e35830cf added missing php command

Discussion
----------

Added missing php command

---------------------------------------------------------------------------

by stof at 2012-06-17T20:34:18Z

if you make the phar executable, it will work without using ``php``, thanks to the shebang. But adding the command is indeed a good idea for windows users.
parents 5bda6d80 e35830cf
...@@ -34,7 +34,7 @@ And run Composer to install Silex and all its dependencies: ...@@ -34,7 +34,7 @@ And run Composer to install Silex and all its dependencies:
.. code-block:: bash .. code-block:: bash
$ curl -s http://getcomposer.org/installer | php $ curl -s http://getcomposer.org/installer | php
$ composer.phar install $ php composer.phar install
Upgrading Upgrading
--------- ---------
...@@ -42,7 +42,7 @@ Upgrading ...@@ -42,7 +42,7 @@ Upgrading
Upgrading Silex to the latest version is as easy as running the ``update`` Upgrading Silex to the latest version is as easy as running the ``update``
command:: command::
$ composer.phar update $ php composer.phar update
Bootstrap Bootstrap
--------- ---------
......
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