├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src └── Runners └── SlowestTests ├── Channel.php ├── Console.php ├── Csv.php ├── Json.php ├── MySQL.php └── SQLite.php /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/composer.json -------------------------------------------------------------------------------- /src/Runners/SlowestTests/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/src/Runners/SlowestTests/Channel.php -------------------------------------------------------------------------------- /src/Runners/SlowestTests/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/src/Runners/SlowestTests/Console.php -------------------------------------------------------------------------------- /src/Runners/SlowestTests/Csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/src/Runners/SlowestTests/Csv.php -------------------------------------------------------------------------------- /src/Runners/SlowestTests/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/src/Runners/SlowestTests/Json.php -------------------------------------------------------------------------------- /src/Runners/SlowestTests/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/src/Runners/SlowestTests/MySQL.php -------------------------------------------------------------------------------- /src/Runners/SlowestTests/SQLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lloople/phpunit-extensions/HEAD/src/Runners/SlowestTests/SQLite.php --------------------------------------------------------------------------------