Code snippets
You will find here 8 code snippets I find useful so I don't have to Google ™ or Stackoverflow ™ them when I need. There are also code snippets I always forget! 😁 Sometimes, related links to the code will be available. The main difference with other random snippets you will find on the web is that in most cases (for the Symfony related ones) you will be able to run them directly from this website to check the output so you can verify it works as expected ™.
This snippet shows how to test a new Symfony major beta version. We saw how to try the "next" minor version in the previous snippe...
Symfony
Published on 2023-11-01 • Modified on 2023-11-01
In a previous snippet, we saw how to ignore platform requirements globally. Composer now allows ignoring specific requirement par...
composer
Published on 2023-06-10 • Modified on 2023-06-10
This snippet shows how to list modified files in the vendor directory with composer. We all did it! Modifying files in the vendor ...
composer
Published on 2022-08-01 • Modified on 2022-08-01
This snippet shows how to use a stable version of a package, whatever the major version with composer. We generally use major requ...
composer
Published on 2021-10-03 • Modified on 2021-10-03
In this snippet, we see how to use a specific branch instead of a version with composer. Sometimes, this can be useful for testing...
composer
Published on 2021-10-02 • Modified on 2021-10-02
In this snippet, we see how to ignore platform requirements with composer. In a project I maintain, I did an update of a package, ...
composer
Published on 2021-09-15 • Modified on 2021-09-15
In this snippet, we will see how to freeze a composer dependency to a given commit. It can be useful sometimes to avoid a bug that...
composer
Published on 2020-12-23 • Modified on 2020-12-23
This is a super useful trick to test packages at arbitrary versions. In the following example, the master branch of the friendsofs...
composer
Published on 2020-01-11 • Modified on 2020-01-12