Update phpunit + doctrine/dbal
All checks were successful
Build and Push Docker Image / build (push) Successful in 6m53s

This commit is contained in:
Melaine Gérard 2025-01-11 20:03:06 +01:00
parent 6763ed4d1e
commit 99166674e4
3 changed files with 317 additions and 321 deletions

View File

@ -7,7 +7,7 @@
"php": ">=8.2", "php": ">=8.2",
"ext-ctype": "*", "ext-ctype": "*",
"ext-iconv": "*", "ext-iconv": "*",
"doctrine/dbal": "^3.9.3", "doctrine/dbal": "^4.2.1",
"doctrine/doctrine-bundle": "^2.13.1", "doctrine/doctrine-bundle": "^2.13.1",
"doctrine/doctrine-migrations-bundle": "^3.3.1", "doctrine/doctrine-migrations-bundle": "^3.3.1",
"doctrine/orm": "^3.3.1", "doctrine/orm": "^3.3.1",
@ -107,7 +107,7 @@
} }
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^9.6.22", "phpunit/phpunit": "^11.5.2",
"symfony/browser-kit": "7.2.*", "symfony/browser-kit": "7.2.*",
"symfony/css-selector": "7.2.*", "symfony/css-selector": "7.2.*",
"symfony/debug-bundle": "7.2.*", "symfony/debug-bundle": "7.2.*",

618
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
colors="true" colors="true"
bootstrap="tests/bootstrap.php" bootstrap="tests/bootstrap.php"
convertDeprecationsToExceptions="false"
> >
<php> <php>
<ini name="display_errors" value="1" /> <ini name="display_errors" value="1" />
@ -22,17 +19,4 @@
<directory>tests</directory> <directory>tests</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<extensions>
</extensions>
</phpunit> </phpunit>