Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/flex
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.7.1
Choose a base ref
...
head repository: symfony/flex
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.x
Choose a head ref
  • 8 commits
  • 4 files changed
  • 4 contributors

Commits on May 29, 2025

  1. Configuration menu
    Copy the full SHA
    3319fcf View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2025

  1. feature #1055 Add option to specify version in add lines requires (Hy…

    …peMC)
    
    This PR was merged into the 2.x branch.
    
    Discussion
    ----------
    
    Add option to specify version in add lines requires
    
    Currently, when requiring `symfony/panther`, Flex adds the following two lines to `phpunit.dist.xml`:
    
    ```diff
    <extensions>
    +    <bootstrap class="Symfony\Component\Panther\ServerExtension" />
    +    <extension class="Symfony\Component\Panther\ServerExtension" />
    </extensions>
    ```
    
    This isn't entirely correct: the `extension` tag is used for PHPUnit <10, while `bootstrap` is used for PHPUnit >=10.
    
    This PR adds support for specifying the required package version for each line, so only the appropriate one is added.
    
    Recipes PR: symfony/recipes#1422
    
    Commits
    -------
    
    3319fcf Add option to specify version in add lines requires
    fabpot committed Jul 4, 2025
    Configuration menu
    Copy the full SHA
    b502cb0 View commit details
    Browse the repository at this point in the history
  2. Fix CS

    fabpot committed Jul 4, 2025
    2 Configuration menu
    Copy the full SHA
    68cdcde View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2025

  1. Revert "Fix CS"

    This reverts commit 68cdcde.
    fabpot committed Jul 5, 2025
    Configuration menu
    Copy the full SHA
    423c36e View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2025

  1. Configuration menu
    Copy the full SHA
    2ca7843 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2025

  1. bug #1061 feat: Make DockerComposeConfigurator compatible with "false…

    …" string (jawira)
    
    This PR was merged into the 2.x branch.
    
    Discussion
    ----------
    
    feat: Make DockerComposeConfigurator compatible with "false" string
    
    This fixes #1060
    
    With this MR `DockerComposeConfigurator` will recognize `"false"` string a proper boolean.
    
    I use `filter_var` function, I think this is a good solution because it requires only a single method call to fix the issue.
    
    With `filter_var` function:
    
    * true, 1, "true", "yes", "1", and "on" are recognized as `true` as well.
    * any other value is `false`.
    
    Additionally this function is already used in the same method some lines below:
    
    https://github.com/symfony/flex/blob/423c36e369361003dc31ef11c5f15fb589e52c01/src/Configurator/DockerComposeConfigurator.php#L115-L117
    
    Commits
    -------
    
    2ca7843 feat: Make DockerComposeConfigurator compatible with "false" string
    fabpot committed Jul 9, 2025
    Configuration menu
    Copy the full SHA
    b70dc5d View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2025

  1. Configuration menu
    Copy the full SHA
    3a96cbd View commit details
    Browse the repository at this point in the history
  2. minor #1062 Leverage symfony-tools/fabbot (nicolas-grekas)

    This PR was merged into the 2.x branch.
    
    Discussion
    ----------
    
    Leverage symfony-tools/fabbot
    
    symfony/symfony#61260
    twigphp/Twig#4671
    https://github.com/symfony-tools/fabbot
    
    Commits
    -------
    
    3a96cbd Leverage symfony-tools/fabbot
    nicolas-grekas committed Jul 29, 2025
    Configuration menu
    Copy the full SHA
    6479b0a View commit details
    Browse the repository at this point in the history
Loading