diff --git a/composer.json b/composer.json index 450327c..6d6fcce 100644 --- a/composer.json +++ b/composer.json @@ -15,13 +15,13 @@ "phpoffice/phpword": "^1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.9", + "friendsofphp/php-cs-fixer": "^3.14.4", "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.9", - "phpstan/phpstan-phpunit": "^1.2", - "phpstan/phpstan-strict-rules": "^1.4", - "phpunit/phpunit": "^9.5", - "symplify/phpstan-rules": "^11.1" + "phpstan/phpstan": "^1.9.18", + "phpstan/phpstan-phpunit": "^1.3.4", + "phpstan/phpstan-strict-rules": "^1.4.5", + "phpunit/phpunit": "^10.0.11", + "symplify/phpstan-rules": "^11.2.4.72" }, "scripts": { "csfixer": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --diff", diff --git a/tests/IndexControllerTest.php b/tests/IndexControllerTest.php index 92d17cc..563f58a 100644 --- a/tests/IndexControllerTest.php +++ b/tests/IndexControllerTest.php @@ -11,5 +11,6 @@ final class IndexControllerTest extends TestCase public function test(): void { self::assertSame('one day i will write a test :^)', strtolower('One day I will write a test :^)')); + static::markTestIncomplete('soon™'); } }