diff --git a/CHANGELOG.md b/CHANGELOG.md index c48749e..097d821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [Unreleased] + +### Added + +- The environment key `PHP_CS_FIXER_IGNORE_ENV` is forwarded to PHP CS Fixer when defined by the user. +- The environment key `LAB_STATION` is provided to the BlackBox process to allow to define a specific configuration in this environment. + ## 4.1.0 - 2024-03-10 ### Changed diff --git a/src/Trigger/BlackBox.php b/src/Trigger/BlackBox.php index 281f9f8..d2a976a 100644 --- a/src/Trigger/BlackBox.php +++ b/src/Trigger/BlackBox.php @@ -67,7 +67,8 @@ private function run(Console $console, OperatingSystem $os): Console $key, ['PATH', 'LC_TERMINAL'], true, - )); + )) + ->put('LAB_STATION', 'true'); $process = $os ->control()