Skip to content

[Cookbook] Add warning about Composer dev deps on Heroku #5078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions cookbook/deployment/heroku.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,13 @@ variables, you can issue a single command to prepare your app for a deployment:

$ heroku config:set SYMFONY_ENV=prod

.. caution::

Be aware that dependencies from ``composer.json`` listed in the ``require-dev``
section are never installed during a deploy on Heroku. This may cause problems
if your Symfony environment relies on such packages. The solution is to move these
packages from ``require-dev`` to the ``require`` section.

.. _heroku-push-code:
.. _pushing-to-heroku:

Expand Down