Théo FIDRY
Théo FIDRY
This requires to upgrade the PHP version used for executing the PHAR building workflow to PHP 8.2 as the newest version of Box require PHP 8.2.
- Configure it to be executed weekly only - Check GitHub Actions too
Introduces a workflow for the purpose of validating and reviewing the code. This where I would typically include: - Static analysis - Various validations, e.g. that the `composer.json` is valid...
Extracted from #1375. Currently: ```shell $ composer validate ./composer.json is valid, but with a few warnings See https://getcomposer.org/doc/04-schema.md for details on the schema - The lock file is not up...
During a phpbrew install command I can see in the logs: ``` configure: creating cache /Users/tfidry/.phpbrew/cache/config.cache ./configure: line 3348: /Users/tfidry/.phpbrew/cache/config.cache: No such file or directory ``` I don't know if...
When trying to install PHP 8.1 with an extension requiring `libxml2` (e.g. `ext-xml`), if libxml2 is 2.12.0+, it will fail hard. PHP 8.2 has been patched but not 8.1 since...
See https://github.com/symfony/maker-bundle/pull/1429/files#r1653262959.
This PR proposes to leverage the PHP-CS-Fixer shim package, which is the Composer package shipping the scoped PHAR, rather than managing the PHAR directly. IMO it is better because on...