Skip to content

Commit

Permalink
Fix: Suggest and require phpunit/phpunit:^10.0.1 as development depen…
Browse files Browse the repository at this point in the history
…dency
  • Loading branch information
localheinz committed May 26, 2023
1 parent 6226d12 commit e400a4f
Show file tree
Hide file tree
Showing 4 changed files with 2,230 additions and 2,207 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

For a full diff see [`2.1.1...main`][2.1.1...main].

### Changed

- Suggested and required `phpunit/phpunit` as a development dependency to allow usage with `phpunit/phpunit` when installed as PHAR ([#272]), by [@localheinz]

## [`2.1.1`][2.1.1]

For a full diff see [`2.1.0...2.1.1`][2.1.0...2.1.1].
Expand Down Expand Up @@ -118,5 +122,6 @@ For a full diff see [`7afa59c...1.0.0`][7afa59c...1.0.0].
[#222]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/222
[#224]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/224
[#243]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/243
[#272]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/272

[@localheinz]: https://github.com/localheinz
17 changes: 16 additions & 1 deletion composer-require-checker.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
{
"symbol-whitelist": []
"symbol-whitelist": [
"PHPUnit\\Event\\Code\\Test",
"PHPUnit\\Event\\Telemetry\\Duration",
"PHPUnit\\Event\\Telemetry\\HRTime",
"PHPUnit\\Event\\Test\\Passed",
"PHPUnit\\Event\\Test\\PassedSubscriber",
"PHPUnit\\Event\\Test\\Prepared",
"PHPUnit\\Event\\Test\\PreparedSubscriber",
"PHPUnit\\Event\\TestRunner\\ExecutionFinished",
"PHPUnit\\Event\\TestRunner\\ExecutionFinishedSubscriber",
"PHPUnit\\Metadata\\Annotation\\Parser\\Registry",
"PHPUnit\\Runner\\Extension\\Extension",
"PHPUnit\\Runner\\Extension\\Facade",
"PHPUnit\\Runner\\Extension\\ParameterCollection",
"PHPUnit\\TextUI\\Configuration\\Configuration"
]
}
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,22 @@
"source": "https://github.com/ergebnis/phpunit-slow-test-detector"
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"phpunit/phpunit": "^10.0.1"
"php": "~8.1.0 || ~8.2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31.0",
"ergebnis/data-provider": "^1.3.0",
"ergebnis/license": "^2.1.0",
"ergebnis/php-cs-fixer-config": "^5.7.0",
"fakerphp/faker": "^1.22.0",
"phpunit/phpunit": "^10.0.1",
"psalm/plugin-phpunit": "~0.18.4",
"rector/rector": "~0.16.0",
"vimeo/psalm": "^5.12.0"
},
"suggest": {
"phpunit/phpunit": "^10.0.1"
},
"autoload": {
"psr-4": {
"Ergebnis\\PHPUnit\\SlowTestDetector\\": "src/"
Expand Down
Loading

0 comments on commit e400a4f

Please sign in to comment.