diff --git a/CHANGELOG.md b/CHANGELOG.md index b762492c..2e16999a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.19](https://github.com/php-testo/testo/compare/0.10.18...0.10.19) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.10.18](https://github.com/php-testo/testo/compare/0.10.17...0.10.18) (2026-06-06) diff --git a/bridge/infection/CHANGELOG.md b/bridge/infection/CHANGELOG.md index 04243fc9..229423f8 100644 --- a/bridge/infection/CHANGELOG.md +++ b/bridge/infection/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.6](https://github.com/php-testo/testo/compare/bridge-infection-0.1.5...bridge-infection-0.1.6) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.5](https://github.com/php-testo/testo/compare/bridge-infection-0.1.4...bridge-infection-0.1.5) (2026-06-06) diff --git a/bridge/symfony-console/CHANGELOG.md b/bridge/symfony-console/CHANGELOG.md index 53a40b53..1c8d00f6 100644 --- a/bridge/symfony-console/CHANGELOG.md +++ b/bridge/symfony-console/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.6](https://github.com/php-testo/testo/compare/bridge-symfony-console-0.1.5...bridge-symfony-console-0.1.6) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.5](https://github.com/php-testo/testo/compare/bridge-symfony-console-0.1.4...bridge-symfony-console-0.1.5) (2026-06-06) diff --git a/bridge/symfony-console/composer.json b/bridge/symfony-console/composer.json index 6e12f8de..b3f309d7 100644 --- a/bridge/symfony-console/composer.json +++ b/bridge/symfony-console/composer.json @@ -23,7 +23,7 @@ "require": { "php": ">=8.2", "symfony/console": "^6.4 || ^7 || ^8.0", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/composer.json b/composer.json index 1d5e9ca4..9be9d045 100644 --- a/composer.json +++ b/composer.json @@ -36,18 +36,18 @@ "psr/event-dispatcher": "^1.0", "symfony/console": "^6.4 || ^7 || ^8.0", "symfony/finder": "^6.4 || ^7 || ^8.0", - "testo/assert": "^0.1.6", - "testo/bench": "^0.1.4", - "testo/bridge-symfony-console": "^0.1.5", - "testo/codecov": "^0.1.7", - "testo/convention": "^0.1.2", - "testo/data": "^0.1.5", - "testo/filter": "^0.1.1", - "testo/inline": "^0.1.4", - "testo/lifecycle": "^0.1.3", - "testo/repeat": "^0.1.7", - "testo/retry": "^0.1.3", - "testo/test": "^0.1.3", + "testo/assert": "^0.1.7", + "testo/bench": "^0.1.5", + "testo/bridge-symfony-console": "^0.1.6", + "testo/codecov": "^0.1.8", + "testo/convention": "^0.1.3", + "testo/data": "^0.1.6", + "testo/filter": "^0.1.2", + "testo/inline": "^0.1.5", + "testo/lifecycle": "^0.1.4", + "testo/repeat": "^0.1.8", + "testo/retry": "^0.1.4", + "testo/test": "^0.1.4", "yiisoft/injector": "^1.2" }, "require-dev": { @@ -57,7 +57,7 @@ "llm/skills": "^1.3", "roxblnfk/unpoly": "1.8.2", "spiral/code-style": "^2.2.2", - "testo/bridge-infection": "^0.1.5", + "testo/bridge-infection": "^0.1.6", "vimeo/psalm": "^7.0@dev" }, "suggest": { diff --git a/core/Common/Environment.php b/core/Common/Environment.php index fc23e337..eba33be7 100644 --- a/core/Common/Environment.php +++ b/core/Common/Environment.php @@ -59,7 +59,7 @@ public static function getXDebugMode(): array { self::init(); return self::$xDebugExists && \function_exists('xdebug_info') - ? \xdebug_info('mode') + ? xdebug_info('mode') : []; } diff --git a/core/Output/Terminal/Renderer/ColorMode.php b/core/Output/Terminal/Renderer/ColorMode.php index 77b267ad..42bf6aa3 100644 --- a/core/Output/Terminal/Renderer/ColorMode.php +++ b/core/Output/Terminal/Renderer/ColorMode.php @@ -92,6 +92,6 @@ private static function isCI(): bool */ private static function isTTY(): bool { - return \function_exists('posix_isatty') && @posix_isatty(\STDOUT); + return \function_exists('posix_isatty') && @\posix_isatty(\STDOUT); } } diff --git a/plugin/assert/CHANGELOG.md b/plugin/assert/CHANGELOG.md index 0fb6c90f..03bdeb0d 100644 --- a/plugin/assert/CHANGELOG.md +++ b/plugin/assert/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.7](https://github.com/php-testo/testo/compare/assert-0.1.6...assert-0.1.7) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.6](https://github.com/php-testo/testo/compare/assert-0.1.5...assert-0.1.6) (2026-06-06) diff --git a/plugin/assert/composer.json b/plugin/assert/composer.json index 1a634e85..fc79ab23 100644 --- a/plugin/assert/composer.json +++ b/plugin/assert/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/bench/CHANGELOG.md b/plugin/bench/CHANGELOG.md index bab7f32e..9d0a5d69 100644 --- a/plugin/bench/CHANGELOG.md +++ b/plugin/bench/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.5](https://github.com/php-testo/testo/compare/bench-0.1.4...bench-0.1.5) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.4](https://github.com/php-testo/testo/compare/bench-0.1.3...bench-0.1.4) (2026-06-06) diff --git a/plugin/bench/composer.json b/plugin/bench/composer.json index 8644b021..945802d4 100644 --- a/plugin/bench/composer.json +++ b/plugin/bench/composer.json @@ -21,9 +21,9 @@ ], "require": { "php": ">=8.2", - "testo/data": "^0.1.5", - "testo/inline": "^0.1.4", - "testo/testo": "0.10.18 - 1" + "testo/data": "^0.1.6", + "testo/inline": "^0.1.5", + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/codecov/CHANGELOG.md b/plugin/codecov/CHANGELOG.md index a4cbef31..8a7cd103 100644 --- a/plugin/codecov/CHANGELOG.md +++ b/plugin/codecov/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.8](https://github.com/php-testo/testo/compare/codecov-0.1.7...codecov-0.1.8) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.7](https://github.com/php-testo/testo/compare/codecov-0.1.6...codecov-0.1.7) (2026-06-06) diff --git a/plugin/codecov/composer.json b/plugin/codecov/composer.json index 5fa20173..e431a49b 100644 --- a/plugin/codecov/composer.json +++ b/plugin/codecov/composer.json @@ -22,9 +22,9 @@ "require": { "php": ">=8.2", "ext-xmlwriter": "*", - "testo/data": "^0.1.5", - "testo/inline": "^0.1.4", - "testo/testo": "0.10.18 - 1" + "testo/data": "^0.1.6", + "testo/inline": "^0.1.5", + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/convention/CHANGELOG.md b/plugin/convention/CHANGELOG.md index 8ef7ecae..f91659de 100644 --- a/plugin/convention/CHANGELOG.md +++ b/plugin/convention/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.3](https://github.com/php-testo/testo/compare/convention-0.1.2...convention-0.1.3) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.2](https://github.com/php-testo/testo/compare/convention-0.1.1...convention-0.1.2) (2026-05-02) diff --git a/plugin/convention/composer.json b/plugin/convention/composer.json index 7a881c48..0fdfa1a6 100644 --- a/plugin/convention/composer.json +++ b/plugin/convention/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/data/CHANGELOG.md b/plugin/data/CHANGELOG.md index ec0e84da..6ca2c755 100644 --- a/plugin/data/CHANGELOG.md +++ b/plugin/data/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.6](https://github.com/php-testo/testo/compare/data-0.1.5...data-0.1.6) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.5](https://github.com/php-testo/testo/compare/data-0.1.4...data-0.1.5) (2026-06-06) diff --git a/plugin/data/composer.json b/plugin/data/composer.json index 5c4f0f1b..254e0ff9 100644 --- a/plugin/data/composer.json +++ b/plugin/data/composer.json @@ -21,8 +21,8 @@ ], "require": { "php": ">=8.2", - "testo/filter": "^0.1.1", - "testo/testo": "0.10.18 - 1" + "testo/filter": "^0.1.2", + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/filter/CHANGELOG.md b/plugin/filter/CHANGELOG.md index a1f4f1e5..2987329e 100644 --- a/plugin/filter/CHANGELOG.md +++ b/plugin/filter/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.2](https://github.com/php-testo/testo/compare/filter-0.1.1...filter-0.1.2) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.1](https://github.com/php-testo/testo/compare/filter-0.1.0...filter-0.1.1) (2026-05-02) diff --git a/plugin/filter/composer.json b/plugin/filter/composer.json index 4419a446..4ca60ac6 100644 --- a/plugin/filter/composer.json +++ b/plugin/filter/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/inline/CHANGELOG.md b/plugin/inline/CHANGELOG.md index 6eac423d..d849e015 100644 --- a/plugin/inline/CHANGELOG.md +++ b/plugin/inline/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.5](https://github.com/php-testo/testo/compare/inline-0.1.4...inline-0.1.5) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.4](https://github.com/php-testo/testo/compare/inline-0.1.3...inline-0.1.4) (2026-06-06) diff --git a/plugin/inline/composer.json b/plugin/inline/composer.json index 7bce5d16..ec1e28ad 100644 --- a/plugin/inline/composer.json +++ b/plugin/inline/composer.json @@ -21,10 +21,10 @@ ], "require": { "php": ">=8.2", - "testo/assert": "^0.1.6", - "testo/data": "^0.1.5", - "testo/filter": "^0.1.1", - "testo/testo": "0.10.18 - 1" + "testo/assert": "^0.1.7", + "testo/data": "^0.1.6", + "testo/filter": "^0.1.2", + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/lifecycle/CHANGELOG.md b/plugin/lifecycle/CHANGELOG.md index b033e56c..5bc6c816 100644 --- a/plugin/lifecycle/CHANGELOG.md +++ b/plugin/lifecycle/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.4](https://github.com/php-testo/testo/compare/lifecycle-0.1.3...lifecycle-0.1.4) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.3](https://github.com/php-testo/testo/compare/lifecycle-0.1.2...lifecycle-0.1.3) (2026-06-06) diff --git a/plugin/lifecycle/composer.json b/plugin/lifecycle/composer.json index 74b31b7d..3a91d386 100644 --- a/plugin/lifecycle/composer.json +++ b/plugin/lifecycle/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/repeat/CHANGELOG.md b/plugin/repeat/CHANGELOG.md index 86685cc9..a1cccfa4 100644 --- a/plugin/repeat/CHANGELOG.md +++ b/plugin/repeat/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.8](https://github.com/php-testo/testo/compare/repeat-0.1.7...repeat-0.1.8) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.7](https://github.com/php-testo/testo/compare/repeat-0.1.6...repeat-0.1.7) (2026-06-06) diff --git a/plugin/repeat/composer.json b/plugin/repeat/composer.json index ea7f1d33..6804d811 100644 --- a/plugin/repeat/composer.json +++ b/plugin/repeat/composer.json @@ -22,7 +22,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/retry/CHANGELOG.md b/plugin/retry/CHANGELOG.md index b6d2a6b0..b7738b82 100644 --- a/plugin/retry/CHANGELOG.md +++ b/plugin/retry/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.4](https://github.com/php-testo/testo/compare/retry-0.1.3...retry-0.1.4) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.3](https://github.com/php-testo/testo/compare/retry-0.1.2...retry-0.1.3) (2026-06-06) diff --git a/plugin/retry/composer.json b/plugin/retry/composer.json index 53b7519b..b6c554e8 100644 --- a/plugin/retry/composer.json +++ b/plugin/retry/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/plugin/test/CHANGELOG.md b/plugin/test/CHANGELOG.md index 57519835..18018224 100644 --- a/plugin/test/CHANGELOG.md +++ b/plugin/test/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.4](https://github.com/php-testo/testo/compare/test-0.1.3...test-0.1.4) (2026-06-07) + + +### Code Refactoring + +* **messenger:** Move messenger into Core ([0ac2728](https://github.com/php-testo/testo/commit/0ac272898b9e24e240f1e301573c8102abbc2ce0)) + ## [0.1.3](https://github.com/php-testo/testo/compare/test-0.1.2...test-0.1.3) (2026-06-05) diff --git a/plugin/test/composer.json b/plugin/test/composer.json index 1122105c..c57b8b59 100644 --- a/plugin/test/composer.json +++ b/plugin/test/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": ">=8.2", - "testo/testo": "0.10.18 - 1" + "testo/testo": "0.10.19 - 1" }, "autoload": { "psr-4": { diff --git a/resources/version.json b/resources/version.json index 218cac3f..27b7df80 100644 --- a/resources/version.json +++ b/resources/version.json @@ -1,16 +1,16 @@ { - ".": "0.10.18", - "plugin/repeat": "0.1.7", - "plugin/convention": "0.1.2", - "plugin/lifecycle": "0.1.3", - "plugin/retry": "0.1.3", - "plugin/filter": "0.1.1", - "plugin/test": "0.1.3", - "plugin/assert": "0.1.6", - "plugin/data": "0.1.5", - "plugin/inline": "0.1.4", - "plugin/bench": "0.1.4", - "plugin/codecov": "0.1.7", - "bridge/symfony-console": "0.1.5", - "bridge/infection": "0.1.5" + ".": "0.10.19", + "plugin/repeat": "0.1.8", + "plugin/convention": "0.1.3", + "plugin/lifecycle": "0.1.4", + "plugin/retry": "0.1.4", + "plugin/filter": "0.1.2", + "plugin/test": "0.1.4", + "plugin/assert": "0.1.7", + "plugin/data": "0.1.6", + "plugin/inline": "0.1.5", + "plugin/bench": "0.1.5", + "plugin/codecov": "0.1.8", + "bridge/symfony-console": "0.1.6", + "bridge/infection": "0.1.6" }