Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Use Sf4 + Sf5 instead of Sf3 for bundle best practices #14853

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
Jan 19, 2021
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
Use Sf4 + Sf5 instead of Sf3 for bundle best practices
  • Loading branch information
OskarStark authored and javiereguiluz committed Jan 19, 2021
commit b2be224760b653cfb0aa6f7e0d45e62c27ee0b2f
8 changes: 4 additions & 4 deletions bundles/best_practices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,15 @@ A bundle should at least test:
* All supported major Symfony versions (e.g. both ``4.x`` and ``5.x`` if
support is claimed for both).

Thus, a bundle supporting PHP 7.3, 7.4 and 8.0, and Symfony 3.4 and 4.x should
Thus, a bundle supporting PHP 7.3, 7.4 and 8.0, and Symfony 4.4 and 5.x should
have at least this test matrix:

=========== =============== ===================
PHP version Symfony version Composer flags
=========== =============== ===================
7.3 ``3.*`` ``--prefer-lowest``
7.4 ``4.*``
8.0 ``4.*``
7.3 ``4.*`` ``--prefer-lowest``
7.4 ``5.*``
8.0 ``5.*``
=========== =============== ===================

.. tip::
Expand Down