mirror of
https://github.com/pestphp/pest.git
synced 2026-03-09 09:17:23 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f75063c420 | |||
| 1f8e6e4e9f | |||
| bb593846e5 |
@ -23,10 +23,10 @@
|
|||||||
"nunomaduro/termwind": "^1.15.1|^2.0.0",
|
"nunomaduro/termwind": "^1.15.1|^2.0.0",
|
||||||
"pestphp/pest-plugin": "^2.1.1",
|
"pestphp/pest-plugin": "^2.1.1",
|
||||||
"pestphp/pest-plugin-arch": "^2.6.1",
|
"pestphp/pest-plugin-arch": "^2.6.1",
|
||||||
"phpunit/phpunit": "^10.5.7"
|
"phpunit/phpunit": "^10.5.9"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"phpunit/phpunit": ">10.5.7",
|
"phpunit/phpunit": ">10.5.9",
|
||||||
"sebastian/exporter": "<5.1.0",
|
"sebastian/exporter": "<5.1.0",
|
||||||
"webmozart/assert": "<1.11.0"
|
"webmozart/assert": "<1.11.0"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '2.32.0';
|
return '2.32.2';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -93,10 +93,9 @@ final class Help implements HandlesArguments
|
|||||||
*/
|
*/
|
||||||
private function getContent(): array
|
private function getContent(): array
|
||||||
{
|
{
|
||||||
$helpReflection = new \ReflectionClass(PHPUnitHelp::class);
|
$helpReflection = new PHPUnitHelp();
|
||||||
|
|
||||||
/** @var array<string, array<int, array{arg: string, desc: string}>> $content */
|
$content = (fn (): array => $this->elements())->call($helpReflection);
|
||||||
$content = $helpReflection->getConstant('HELP_TEXT');
|
|
||||||
|
|
||||||
$content['Configuration'] = [...[[
|
$content['Configuration'] = [...[[
|
||||||
'arg' => '--init',
|
'arg' => '--init',
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.32.0.
|
Pest Testing Framework 2.32.2.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.32.0.
|
Pest Testing Framework 2.32.2.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user