Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
7 changes: 7 additions & 0 deletions bridge/infection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
7 changes: 7 additions & 0 deletions bridge/symfony-console/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion bridge/symfony-console/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion core/Common/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static function getXDebugMode(): array
{
self::init();
return self::$xDebugExists && \function_exists('xdebug_info')
? \xdebug_info('mode')
? xdebug_info('mode')
: [];
}

Expand Down
2 changes: 1 addition & 1 deletion core/Output/Terminal/Renderer/ColorMode.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
7 changes: 7 additions & 0 deletions plugin/assert/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/assert/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/bench/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
6 changes: 3 additions & 3 deletions plugin/bench/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/codecov/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
6 changes: 3 additions & 3 deletions plugin/codecov/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/convention/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/convention/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions plugin/data/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/filter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/filter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/inline/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
8 changes: 4 additions & 4 deletions plugin/inline/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/lifecycle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/lifecycle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/repeat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/repeat/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/retry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/retry/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions plugin/test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion plugin/test/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2",
"testo/testo": "0.10.18 - 1"
"testo/testo": "0.10.19 - 1"
},
"autoload": {
"psr-4": {
Expand Down
28 changes: 14 additions & 14 deletions resources/version.json
Original file line number Diff line number Diff line change
@@ -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"
}
Loading