@@ -16,7 +16,7 @@ Symfony2 Deployment Basics
16
16
The typical steps taken while deploying a Symfony2 application include:
17
17
18
18
#. 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
20
20
be done before uploading);
21
21
#. Running database migrations or similar tasks to update any changed data structures;
22
22
#. Clearing (and perhaps more importantly, warming up) your cache.
@@ -88,7 +88,7 @@ as your normally do:
88
88
89
89
.. code-block :: bash
90
90
91
- $ php bin/vendors install
91
+ $ php composer.phar install
92
92
93
93
C) Clear your Symfony cache
94
94
~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -108,7 +108,7 @@ setup:
108
108
* Running any database migrations
109
109
* Clearing your APC cache
110
110
* 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 ``)
112
112
* Add/edit CRON jobs
113
113
* Pushing assets to a CDN
114
114
* ...
@@ -126,7 +126,7 @@ are simple and more complex tools and one can make the deployment as easy
126
126
(or sophisticated) as your environment requires.
127
127
128
128
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
130
130
other potential things like pushing assets to a CDN (see `Common Post-Deployment Tasks `_).
131
131
132
132
The Tools
0 commit comments