Skip to content
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

Removed minimum-stability: beta suggestion #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 8 additions & 2 deletions extensions/symfony-bundle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ following command in a terminal:

.. note::

Make sure that the "minimum-stability" setting is set to "beta" in
composer.json, otherwise the installation will fail:
Since puli is in beta phase, it requires that you allow it to install other
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uppercase Puli, also in the next paragraph

dependencies that are also in beta. The easiest way is to set "minimum-stability"
setting to "beta" in composer.json
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"in composer.json:"


.. code-block:: json

Expand All @@ -52,6 +53,11 @@ following command in a terminal:
"minimum-stability": "beta"
}

However, this may have consequences on other dependencies. If this happens, an
alternative is to explicitly require all of the puli packages as beta versions
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all Puli packages with the ``@beta`` suffix in ``composer.json``.

in composer.json.


This will download the bundle to your project.

When this command completes, run ``composer install`` to initialize the
Expand Down