From 06a0bd9b0bf8c9e592e7d63cc8bb95dd888b81d8 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 21 Nov 2024 10:46:27 +0000 Subject: [PATCH] Bumps dependencies --- composer.json | 6 +++--- tests/Fixtures/Inheritance/Base/ExampleTest.php | 2 +- tests/Fixtures/Inheritance/ExampleTest.php | 2 +- tests/PHPUnit/CustomTestCase/ExecutedTest.php | 2 +- tests/PHPUnit/CustomTestCase/ParentTest.php | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 272a2807..60159d02 100644 --- a/composer.json +++ b/composer.json @@ -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", @@ -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, diff --git a/tests/Fixtures/Inheritance/Base/ExampleTest.php b/tests/Fixtures/Inheritance/Base/ExampleTest.php index 5075eb90..add1e0e5 100644 --- a/tests/Fixtures/Inheritance/Base/ExampleTest.php +++ b/tests/Fixtures/Inheritance/Base/ExampleTest.php @@ -6,7 +6,7 @@ class ExampleTest extends TestCase { - public function testExample() + public function test_example() { $this->markTestSkipped(); } diff --git a/tests/Fixtures/Inheritance/ExampleTest.php b/tests/Fixtures/Inheritance/ExampleTest.php index a4ef960d..e6bd3ea3 100644 --- a/tests/Fixtures/Inheritance/ExampleTest.php +++ b/tests/Fixtures/Inheritance/ExampleTest.php @@ -6,7 +6,7 @@ class ExampleTest extends Base\ExampleTest { protected $foo; - public function testExample() + public function test_example() { $this->assertTrue(true); } diff --git a/tests/PHPUnit/CustomTestCase/ExecutedTest.php b/tests/PHPUnit/CustomTestCase/ExecutedTest.php index 90cab8c4..754f6712 100644 --- a/tests/PHPUnit/CustomTestCase/ExecutedTest.php +++ b/tests/PHPUnit/CustomTestCase/ExecutedTest.php @@ -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; diff --git a/tests/PHPUnit/CustomTestCase/ParentTest.php b/tests/PHPUnit/CustomTestCase/ParentTest.php index 0db9c953..b246ef79 100644 --- a/tests/PHPUnit/CustomTestCase/ParentTest.php +++ b/tests/PHPUnit/CustomTestCase/ParentTest.php @@ -17,7 +17,7 @@ private function getEntity(): bool } #[Test] - public function testOverrideMethod(): void + public function test_override_method(): void { assertTrue($this->getEntity() || true); }