mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-21 16:41:05 +00:00
Update all deps
- lock `shipmonk/composer-dependency-analyser` because I don't know how to workaround the error - update parameter PHPDoc for `UserMailer` following `TwigSwiftMailer` update - migrate PHPUnit config using `--migrate-configuration`
This commit is contained in:
parent
bb1d97284f
commit
fa32abc62b
4 changed files with 354 additions and 366 deletions
|
@ -179,7 +179,7 @@
|
|||
"phpstan/phpstan-phpunit": "^1.3.16",
|
||||
"phpstan/phpstan-symfony": "^1.3.7",
|
||||
"phpunit/phpunit": "^9.6.17",
|
||||
"shipmonk/composer-dependency-analyser": "^1.4",
|
||||
"shipmonk/composer-dependency-analyser": "~1.5.0",
|
||||
"symfony/browser-kit": "^5.4.35",
|
||||
"symfony/css-selector": "^5.4.35",
|
||||
"symfony/debug-bundle": "^5.4.35",
|
||||
|
|
645
composer.lock
generated
645
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,43 +1,32 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
|
||||
backupGlobals="false"
|
||||
colors="true"
|
||||
bootstrap="tests/bootstrap.php"
|
||||
>
|
||||
|
||||
<testsuites>
|
||||
<testsuite name="wallabag">
|
||||
<directory>tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
||||
<php>
|
||||
<ini name="error_reporting" value="-1" />
|
||||
<server name="KERNEL_CLASS" value="AppKernel" />
|
||||
<server name="APP_ENV" value="test" />
|
||||
<server name="APP_DEBUG" value="0" />
|
||||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
|
||||
</php>
|
||||
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory>src</directory>
|
||||
<exclude>
|
||||
<directory>vendor</directory>
|
||||
<directory>src/Wallabag/*Bundle/Resources</directory>
|
||||
<directory>src/Wallabag/*Bundle/Tests</directory>
|
||||
<directory>src/Wallabag/*Bundle/DataFixtures</directory>
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
|
||||
<extensions>
|
||||
<extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
|
||||
</extensions>
|
||||
|
||||
<listeners>
|
||||
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
|
||||
</listeners>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php">
|
||||
<coverage>
|
||||
<include>
|
||||
<directory>src</directory>
|
||||
</include>
|
||||
<exclude>
|
||||
<directory>vendor</directory>
|
||||
<directory>src/Wallabag/*Bundle/Resources</directory>
|
||||
<directory>src/Wallabag/*Bundle/Tests</directory>
|
||||
<directory>src/Wallabag/*Bundle/DataFixtures</directory>
|
||||
</exclude>
|
||||
</coverage>
|
||||
<testsuites>
|
||||
<testsuite name="wallabag">
|
||||
<directory>tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<php>
|
||||
<ini name="error_reporting" value="-1"/>
|
||||
<server name="KERNEL_CLASS" value="AppKernel"/>
|
||||
<server name="APP_ENV" value="test"/>
|
||||
<server name="APP_DEBUG" value="0"/>
|
||||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/>
|
||||
</php>
|
||||
<extensions>
|
||||
<extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension"/>
|
||||
</extensions>
|
||||
<listeners>
|
||||
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
|
||||
</listeners>
|
||||
</phpunit>
|
||||
|
|
|
@ -30,7 +30,7 @@ class UserMailer extends TwigSwiftMailer
|
|||
protected $twig;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
* @var array{template: array{confirmation: string, resetting: string}, from_email: array{confirmation: array<string, string>|string, resetting: array<string, string>|string}}
|
||||
*/
|
||||
protected $parameters;
|
||||
|
||||
|
|
Loading…
Reference in a new issue