Skip to content

Commit 1a94f43

Browse files
committed
Update dependencies
1 parent 731dda3 commit 1a94f43

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,30 +33,30 @@
3333
"ext-mongodb": "*",
3434
"ext-pdo_sqlite": "*",
3535
"ext-zip": "*",
36-
"doctrine/common": "^3.4",
36+
"doctrine/common": "^3.4.3",
3737
"doctrine/doctrine-bundle": "^2.11.1",
38-
"doctrine/orm": "^2.17.1",
38+
"doctrine/orm": "^2.17.2",
3939
"doctrine/persistence": "^3.2.0",
4040
"friendsofphp/php-cs-fixer": "^v3.40.0",
41-
"mongodb/mongodb": "^1.12",
41+
"mongodb/mongodb": "^1.17",
4242
"ocramius/package-versions": "^2.8",
43-
"phpoffice/phpspreadsheet": "^1.24.1",
43+
"phpoffice/phpspreadsheet": "^1.29.0",
4444
"phpstan/extension-installer": "^1.3.1",
45-
"phpstan/phpstan": "^1.10.47",
46-
"phpstan/phpstan-doctrine": "^1.3.53",
45+
"phpstan/phpstan": "^1.10.55",
46+
"phpstan/phpstan-doctrine": "^1.3.54",
4747
"phpstan/phpstan-phpunit": "^1.3.15",
48-
"phpstan/phpstan-symfony": "^1.3.5",
49-
"phpunit/phpunit": "^10.5.1",
50-
"ruflin/elastica": "^6.2|^7.2",
48+
"phpstan/phpstan-symfony": "^1.3.6",
49+
"phpunit/phpunit": "^10.5.5",
50+
"ruflin/elastica": "^6.2|^7.3.1",
5151
"symfony/browser-kit": "^6.3|^7.0",
5252
"symfony/css-selector": "^6.3|^7.0",
53-
"symfony/doctrine-bridge": "^6.3|^7.0",
53+
"symfony/doctrine-bridge": "^6.3|^7.0.2",
5454
"symfony/dom-crawler": "^6.3|^7.0",
55-
"symfony/intl": "^6.3|^7.0",
55+
"symfony/intl": "^6.3|^7.0.2",
5656
"symfony/mime": "^6.3|^7.0",
57-
"symfony/phpunit-bridge": "^6.3|^7.0",
57+
"symfony/phpunit-bridge": "^6.3|^7.0.2",
5858
"symfony/twig-bundle": "^6.3|^7.0",
59-
"symfony/var-dumper": "^6.3|^7.0",
59+
"symfony/var-dumper": "^6.3|^7.0.2",
6060
"symfony/yaml": "^6.3|^7.0"
6161
},
6262
"suggest": {

tests/Fixtures/AppKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function registerBundles(): array
2929
new \Symfony\Bundle\TwigBundle\TwigBundle(),
3030
new \Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
3131
new \Omines\DataTablesBundle\DataTablesBundle(),
32-
new \Tests\Fixtures\AppBundle\AppBundle(),
32+
new AppBundle\AppBundle(),
3333
];
3434
}
3535

tests/phpunit-bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
$companies[] = $company = new Company('Company ' . $i);
3838
$em->persist($company);
3939
}
40-
$date = new \DateTime('2017-05-03 12:34:56');
40+
$date = new DateTime('2017-05-03 12:34:56');
4141
for ($i = 0; 125 !== $i; ++$i) {
42-
$date->sub(new \DateInterval('P3DT5H27M'));
42+
$date->sub(new DateInterval('P3DT5H27M'));
4343
$em->persist(new Employee('FirstName' . $i, 'LastName' . $i, $i % 2 ? clone $date : null, $companies[$i % count($companies)]));
4444
}
4545
$em->flush();

0 commit comments

Comments
 (0)