Skip to content

Commit

Permalink
Bumps dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Nov 21, 2024
1 parent 91afc81 commit 06a0bd9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"php": "^8.2.0",
"brianium/paratest": "^7.6.0",
"nunomaduro/collision": "^8.5.0",
"nunomaduro/termwind": "^2.2.0",
"nunomaduro/termwind": "^2.3.0",
"pestphp/pest-plugin": "^3.0.0",
"pestphp/pest-plugin-arch": "^3.0.0",
"pestphp/pest-plugin-mutate": "^3.0.5",
Expand Down Expand Up @@ -54,8 +54,8 @@
},
"require-dev": {
"pestphp/pest-dev-tools": "^3.3.0",
"pestphp/pest-plugin-type-coverage": "^3.1.0",
"symfony/process": "^7.1.6"
"pestphp/pest-plugin-type-coverage": "^3.2.0",
"symfony/process": "^7.1.8"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/Inheritance/Base/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class ExampleTest extends TestCase
{
public function testExample()
public function test_example()
{
$this->markTestSkipped();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/Inheritance/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class ExampleTest extends Base\ExampleTest
{
protected $foo;

public function testExample()
public function test_example()
{
$this->assertTrue(true);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/PHPUnit/CustomTestCase/ExecutedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ExecutedTest extends TestCase
public static $executed = false;

#[Test]
public function testThatGetsExecuted(): void
public function test_that_gets_executed(): void
{
self::$executed = true;

Expand Down
2 changes: 1 addition & 1 deletion tests/PHPUnit/CustomTestCase/ParentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private function getEntity(): bool
}

#[Test]
public function testOverrideMethod(): void
public function test_override_method(): void
{
assertTrue($this->getEntity() || true);
}
Expand Down

0 comments on commit 06a0bd9

Please sign in to comment.