diff --git a/.gitignore b/.gitignore
index b43ae3a..fc0bbee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,29 +1,29 @@
-###> symfony/framework-bundle ###
-/.env.local
-/.env.local.php
-/.env.*.local
-/config/secrets/prod/prod.decrypt.private.php
-/public/bundles/
-/var/
-/vendor/
-###< symfony/framework-bundle ###
-
-/.idea
-###> friendsofphp/php-cs-fixer ###
-/.php-cs-fixer.php
-/.php-cs-fixer.cache
-###< friendsofphp/php-cs-fixer ###
-
-###> phpstan/phpstan ###
-phpstan.neon
-###< phpstan/phpstan ###
-
-###> phpunit/phpunit ###
-/phpunit.xml
-.phpunit.result.cache
-###< phpunit/phpunit ###
-
-###> symfony/phpunit-bridge ###
-.phpunit.result.cache
-/phpunit.xml
-###< symfony/phpunit-bridge ###
+###> symfony/framework-bundle ###
+/.env.local
+/.env.local.php
+/.env.*.local
+/config/secrets/prod/prod.decrypt.private.php
+/public/bundles/
+/var/
+/vendor/
+###< symfony/framework-bundle ###
+
+/.idea
+###> friendsofphp/php-cs-fixer ###
+/.php-cs-fixer.php
+/.php-cs-fixer.cache
+###< friendsofphp/php-cs-fixer ###
+
+###> phpstan/phpstan ###
+phpstan.neon
+###< phpstan/phpstan ###
+
+###> phpunit/phpunit ###
+/phpunit.xml
+.phpunit.result.cache
+###< phpunit/phpunit ###
+
+###> symfony/phpunit-bridge ###
+.phpunit.result.cache
+/phpunit.xml
+###< symfony/phpunit-bridge ###
diff --git a/composer.json b/composer.json
index c310798..bbb7f83 100644
--- a/composer.json
+++ b/composer.json
@@ -80,7 +80,7 @@
         "friendsofphp/php-cs-fixer": "^3.52",
         "liip/test-fixtures-bundle": "^2.9",
         "phpstan/phpstan": "^1.10",
-        "phpunit/phpunit": "^10",
+        "phpunit/phpunit": "^10.5",
         "symfony/browser-kit": "7.0.*",
         "symfony/css-selector": "7.0.*",
         "symfony/maker-bundle": "^1.57",
diff --git a/composer.lock b/composer.lock
index 653c1c4..b8f3b5d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "73b78222526d69cb11134db8054bf0bd",
+    "content-hash": "7fa11f24bab950561fc2cf71a5a00a77",
     "packages": [
         {
             "name": "carbonphp/carbon-doctrine-types",
@@ -8030,5 +8030,5 @@
         "ext-iconv": "*"
     },
     "platform-dev": [],
-    "plugin-api-version": "2.6.0"
+    "plugin-api-version": "2.3.0"
 }
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index c76a655..90ece6e 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -6,7 +6,7 @@
          backupGlobals="false"
          colors="true"
          bootstrap="tests/bootstrap.php"
-         convertDeprecationsToExceptions="false"
+         cacheDirectory="var/tests"
 >
     <php>
         <ini name="display_errors" value="1" />
@@ -23,16 +23,6 @@
         </testsuite>
     </testsuites>
 
-    <coverage processUncoveredFiles="true">
-        <include>
-            <directory suffix=".php">src</directory>
-        </include>
-    </coverage>
-
-    <listeners>
-        <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
-    </listeners>
-
     <extensions>
     </extensions>
 </phpunit>
diff --git a/tests/AbstractTestCase.php b/tests/AbstractTestCase.php
index 6d0e311..6d54320 100644
--- a/tests/AbstractTestCase.php
+++ b/tests/AbstractTestCase.php
@@ -1,25 +1,25 @@
-<?php
-
-namespace App\Tests;
-
-use App\Traits\FakerTools;
-use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
-
-/**
- * Для работы с сущностью.
- */
-abstract class AbstractTestCase extends WebTestCase
-{
-    use FakerTools;
-    /**
-     * Обновить значение свойства.
-     *
-     * @throws \ReflectionException
-     */
-    public function setEntityProperty(object $entity, int|string|array $value, string $field): void
-    {
-        $class = new \ReflectionClass($entity);
-        $property = $class->getProperty($field);
-        $property->setValue($entity, $value);
-    }
-}
+<?php
+
+namespace App\Tests;
+
+use App\Traits\FakerTools;
+use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
+
+/**
+ * Для работы с сущностью.
+ */
+abstract class AbstractTestCase extends WebTestCase
+{
+    use FakerTools;
+    /**
+     * Обновить значение свойства.
+     *
+     * @throws \ReflectionException
+     */
+    public function setEntityProperty(object $entity, int|string|array $value, string $field): void
+    {
+        $class = new \ReflectionClass($entity);
+        $property = $class->getProperty($field);
+        $property->setValue($entity, $value);
+    }
+}
diff --git a/tests/Resource/Fixture/StmtFixture.php b/tests/Resource/Fixture/StmtFixture.php
index 9fc8de6..6395a9b 100644
--- a/tests/Resource/Fixture/StmtFixture.php
+++ b/tests/Resource/Fixture/StmtFixture.php
@@ -1,25 +1,25 @@
-<?php
-
-namespace App\Tests\Resource\Fixture;
-
-use App\Factories\StmtFactory;
-use Doctrine\Bundle\FixturesBundle\Fixture;
-use Doctrine\Persistence\ObjectManager;
-
-class StmtFixture extends Fixture
-{
-    public const REFERENCE = 'stmt';
-
-    /**
-     * @throws \ReflectionException
-     */
-    public function load(ObjectManager $manager, ?array $data = null): void
-    {
-        $stmt = (new StmtFactory())->create($data);
-
-        $manager->persist($stmt);
-        $manager->flush();
-
-        $this->addReference(self::REFERENCE, $stmt);
-    }
-}
+<?php
+
+namespace App\Tests\Resource\Fixture;
+
+use App\Factories\StmtFactory;
+use Doctrine\Bundle\FixturesBundle\Fixture;
+use Doctrine\Persistence\ObjectManager;
+
+class StmtFixture extends Fixture
+{
+    public const REFERENCE = 'stmt';
+
+    /**
+     * @throws \ReflectionException
+     */
+    public function load(ObjectManager $manager, ?array $data = null): void
+    {
+        $stmt = (new StmtFactory())->create($data);
+
+        $manager->persist($stmt);
+        $manager->flush();
+
+        $this->addReference(self::REFERENCE, $stmt);
+    }
+}
diff --git a/tests/StmtServiceTest.php b/tests/StmtServiceTest.php
index 5604512..dc5d06f 100644
--- a/tests/StmtServiceTest.php
+++ b/tests/StmtServiceTest.php
@@ -1,62 +1,62 @@
-<?php
-
-namespace App\Tests;
-
-use App\Entity\Stmt;
-use App\Factories\StmtFactory;
-use App\Tests\Resource\Fixture\StmtFixture;
-use Liip\TestFixturesBundle\Services\DatabaseToolCollection;
-
-class StmtServiceTest extends AbstractTestCase
-{
-    // private readonly StmtService $stmtService;
-
-//    public function setUp(): void
-//    {
-////        parent::setUp();
-//        //        $this->stmtService = static::getContainer()->get(StmtService::class);
-//
-//    }
-
-    /**
-     * @throws \ReflectionException
-     */
-    public function _test(): void
-    {
-        $id = $data['id'] ?? $this->fake()->randomNumber();
-        $model = (new StmtFactory())->create();
-        $this->setEntityProperty($model, $id, 'id');
-        dump($model);
-
-        $this->assertTrue(true);
-    }
-
-    /**
-     * Успешная выборка заявок с фильтрацией.
-     */
-    public function testSearchFilterSuccess(): void
-    {
-       // dd(static::getContainer()->get(DatabaseToolCollection::class));
-
-        dd(static::getContainer()->get(DatabaseToolCollection::class)->get(...));
-
-//        dump(get_class($this->databaseTool->get()));
-//        $params = [
-//            'created_at' => '2024-03-24T10:22:29.000000Z',
-//            'updated_at' => '2024-03-24T10:22:29.000000Z',
-//            'status' => Stmt::STATUS_RESOLVED,
-//        ];
-
-//        $executor = $this->databaseTool
-//        loadFixtures([StmtFixture::class]);
-        //        $stmt = $executor->getReferenceRepository()->getReference(StmtFixture::REFERENCE);
-
-        //        $existingStmt = $this->mana
-        //
-        //        dump($this->stmtService->search($params['created_at'], $params['updated_at'], $params['status']));
-        //
-        //        $this->assertSame($count, Stmt::all()->count());
-
-        $this->assertTrue(true);
-    }
-}
+<?php
+
+namespace App\Tests;
+
+use App\Entity\Stmt;
+use App\Factories\StmtFactory;
+use App\Tests\Resource\Fixture\StmtFixture;
+use Liip\TestFixturesBundle\Services\DatabaseToolCollection;
+
+class StmtServiceTest extends AbstractTestCase
+{
+    // private readonly StmtService $stmtService;
+
+//    public function setUp(): void
+//    {
+////        parent::setUp();
+//        //        $this->stmtService = static::getContainer()->get(StmtService::class);
+//
+//    }
+
+    /**
+     * @throws \ReflectionException
+     */
+    public function _test(): void
+    {
+        $id = $data['id'] ?? $this->fake()->randomNumber();
+        $model = (new StmtFactory())->create();
+        $this->setEntityProperty($model, $id, 'id');
+        dump($model);
+
+        $this->assertTrue(true);
+    }
+
+    /**
+     * Успешная выборка заявок с фильтрацией.
+     */
+    public function testSearchFilterSuccess(): void
+    {
+       // dd(static::getContainer()->get(DatabaseToolCollection::class));
+
+        dd(static::getContainer()->get(DatabaseToolCollection::class)->get(...));
+
+//        dump(get_class($this->databaseTool->get()));
+//        $params = [
+//            'created_at' => '2024-03-24T10:22:29.000000Z',
+//            'updated_at' => '2024-03-24T10:22:29.000000Z',
+//            'status' => Stmt::STATUS_RESOLVED,
+//        ];
+
+//        $executor = $this->databaseTool
+//        loadFixtures([StmtFixture::class]);
+        //        $stmt = $executor->getReferenceRepository()->getReference(StmtFixture::REFERENCE);
+
+        //        $existingStmt = $this->mana
+        //
+        //        dump($this->stmtService->search($params['created_at'], $params['updated_at'], $params['status']));
+        //
+        //        $this->assertSame($count, Stmt::all()->count());
+
+        $this->assertTrue(true);
+    }
+}
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 5977696..47a5855 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -6,8 +6,6 @@ require dirname(__DIR__).'/vendor/autoload.php';
 
 if (method_exists(Dotenv::class, 'bootEnv')) {
     (new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
-    (new Dotenv())->bootEnv(dirname(__DIR__).'/.env.local');
-    (new Dotenv())->bootEnv(dirname(__DIR__).'/.env.test');
 }
 
 if ($_SERVER['APP_DEBUG']) {
