Skip to content

Commit 8ceabb9

Browse files
committed
[#1782] Upgrading deployment details to 2.1
1 parent 60c85de commit 8ceabb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cookbook/deployment-tools.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Symfony2 Deployment Basics
1616
The typical steps taken while deploying a Symfony2 application include:
1717

1818
#. Upload your modified code to the live server;
19-
#. Update your vendor dependencies (typically done via ``bin/vendors``, and may
19+
#. Update your vendor dependencies (typically done via Composer, and may
2020
be done before uploading);
2121
#. Running database migrations or similar tasks to update any changed data structures;
2222
#. Clearing (and perhaps more importantly, warming up) your cache.
@@ -88,7 +88,7 @@ as your normally do:
8888

8989
.. code-block:: bash
9090
91-
$ php bin/vendors install
91+
$ php composer.phar install
9292
9393
C) Clear your Symfony cache
9494
~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -108,7 +108,7 @@ setup:
108108
* Running any database migrations
109109
* Clearing your APC cache
110110
* Dumping your Assetic assets (taken care of already in ``cache:clear``)
111-
* Running ``assets:install`` (taken care of already in ``bin/vendors``)
111+
* Running ``assets:install`` (taken care of already in ``composer.phar install``)
112112
* Add/edit CRON jobs
113113
* Pushing assets to a CDN
114114
* ...
@@ -126,7 +126,7 @@ are simple and more complex tools and one can make the deployment as easy
126126
(or sophisticated) as your environment requires.
127127

128128
Don't forget that deploying your application also involves updating any dependency
129-
(typically via ``bin/vendors``), migrating your database, clearing your cache and
129+
(typically via Composer), migrating your database, clearing your cache and
130130
other potential things like pushing assets to a CDN (see `Common Post-Deployment Tasks`_).
131131

132132
The Tools

0 commit comments

Comments
 (0)