Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
curry684 committed Jan 9, 2024
1 parent 731dda3 commit 1a94f43
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,30 +33,30 @@
"ext-mongodb": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"doctrine/common": "^3.4",
"doctrine/common": "^3.4.3",
"doctrine/doctrine-bundle": "^2.11.1",
"doctrine/orm": "^2.17.1",
"doctrine/orm": "^2.17.2",
"doctrine/persistence": "^3.2.0",
"friendsofphp/php-cs-fixer": "^v3.40.0",
"mongodb/mongodb": "^1.12",
"mongodb/mongodb": "^1.17",
"ocramius/package-versions": "^2.8",
"phpoffice/phpspreadsheet": "^1.24.1",
"phpoffice/phpspreadsheet": "^1.29.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.47",
"phpstan/phpstan-doctrine": "^1.3.53",
"phpstan/phpstan": "^1.10.55",
"phpstan/phpstan-doctrine": "^1.3.54",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpstan/phpstan-symfony": "^1.3.5",
"phpunit/phpunit": "^10.5.1",
"ruflin/elastica": "^6.2|^7.2",
"phpstan/phpstan-symfony": "^1.3.6",
"phpunit/phpunit": "^10.5.5",
"ruflin/elastica": "^6.2|^7.3.1",
"symfony/browser-kit": "^6.3|^7.0",
"symfony/css-selector": "^6.3|^7.0",
"symfony/doctrine-bridge": "^6.3|^7.0",
"symfony/doctrine-bridge": "^6.3|^7.0.2",
"symfony/dom-crawler": "^6.3|^7.0",
"symfony/intl": "^6.3|^7.0",
"symfony/intl": "^6.3|^7.0.2",
"symfony/mime": "^6.3|^7.0",
"symfony/phpunit-bridge": "^6.3|^7.0",
"symfony/phpunit-bridge": "^6.3|^7.0.2",
"symfony/twig-bundle": "^6.3|^7.0",
"symfony/var-dumper": "^6.3|^7.0",
"symfony/var-dumper": "^6.3|^7.0.2",
"symfony/yaml": "^6.3|^7.0"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function registerBundles(): array
new \Symfony\Bundle\TwigBundle\TwigBundle(),
new \Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new \Omines\DataTablesBundle\DataTablesBundle(),
new \Tests\Fixtures\AppBundle\AppBundle(),
new AppBundle\AppBundle(),
];
}

Expand Down
4 changes: 2 additions & 2 deletions tests/phpunit-bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
$companies[] = $company = new Company('Company ' . $i);
$em->persist($company);
}
$date = new \DateTime('2017-05-03 12:34:56');
$date = new DateTime('2017-05-03 12:34:56');
for ($i = 0; 125 !== $i; ++$i) {
$date->sub(new \DateInterval('P3DT5H27M'));
$date->sub(new DateInterval('P3DT5H27M'));
$em->persist(new Employee('FirstName' . $i, 'LastName' . $i, $i % 2 ? clone $date : null, $companies[$i % count($companies)]));
}
$em->flush();

0 comments on commit 1a94f43

Please sign in to comment.