Skip to content

composer(deps): bump the minor-patch-dependencies group with 12 updates #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": "^8.1.0",
"ext-mbstring": "*",
"monolog/monolog": "^3.4.0"
"monolog/monolog": "^3.5.0"
},
"require-dev": {
"ext-ctype": "*",
Expand All @@ -28,36 +28,35 @@
"ext-xml": "*",
"ext-xmlwriter": "*",
"actived/microsoft-teams-notifier": "^1.3.0",
"aws/aws-sdk-php": "^3.282.0",
"aws/aws-sdk-php": "^3.283.14",
"doctrine/couchdb": "1.0.0-beta4",
"elasticsearch/elasticsearch": "^v7.17.2 || ^v8.7.0",
"ezimuel/ringphp": "^1.2.2",
"graylog2/gelf-php": "^2.0.1",
"guzzlehttp/guzzle": "^7.8.0",
"guzzlehttp/psr7": "^2.6.1",
"infection/infection": "^0.27.3",
"infection/infection": "^0.27.6",
"jk/monolog-request-header-processor": "^1.0.0",
"laminas/laminas-config": "^3.9.0",
"laminas/laminas-eventmanager": "^3.10.0",
"laminas/laminas-eventmanager": "^3.12.0",
"laminas/laminas-modulemanager": "^2.14.0",
"laminas/laminas-servicemanager": "^3.21.0",
"laminas/laminas-servicemanager": "^3.22.1",
"mikey179/vfsstream": "^1.6.11",
"mimmi20/coding-standard": "^5.1.18",
"mimmi20/coding-standard": "^5.1.20",
"mimmi20/monolog-callbackfilterhandler": "^3.0.3",
"mimmi20/monolog-streamformatter": "^3.0.3",
"nikic/php-parser": "^v4.17.1",
"php-console/php-console": "^3.1.8",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.36",
"phpstan/phpstan": "^1.10.39",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.14",
"phpunit/phpunit": "^10.3.5",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpunit/phpunit": "^10.4.2",
"predis/predis": "^1.1.10 || ^2.1.2",
"rector/rector": "^0.18.4",
"rector/rector": "^0.18.6",
"ruflin/elastica": "^7.3.1",
"symfony/mailer": "^v6.3.0",
"symfony/mime": "^v6.3.3",
"vimeo/psalm": "^5.15.0"
"symfony/mailer": "^v6.3.5",
"symfony/mime": "^v6.3.5"
},
"suggest": {
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
Expand Down
18 changes: 0 additions & 18 deletions psalm.xml

This file was deleted.

21 changes: 19 additions & 2 deletions tests/Client/ElasticsearchV7FactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace Mimmi20Test\MonologFactory\Client;

use Elasticsearch\Client as V7Client;
use Elasticsearch\Common\Exceptions\AuthenticationConfigException;
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
use Mimmi20\MonologFactory\Client\ElasticsearchV7Factory;
use PHPUnit\Framework\Exception;
Expand All @@ -23,7 +24,11 @@

final class ElasticsearchV7FactoryTest extends TestCase
{
/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
* @throws AuthenticationConfigException
*/
public function testInvokeWithoutConfig(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -43,7 +48,11 @@ public function testInvokeWithoutConfig(): void
$factory($container, '');
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
* @throws AuthenticationConfigException
*/
public function testInvokeWithEmptyConfig(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -65,6 +74,8 @@ public function testInvokeWithEmptyConfig(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
* @throws AuthenticationConfigException
*
* @requires extension curl
*/
Expand Down Expand Up @@ -93,6 +104,8 @@ public function testInvokeWithConfigWithWrongHostConfig(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
* @throws AuthenticationConfigException
*
* @requires extension curl
*/
Expand All @@ -119,6 +132,8 @@ public function testInvokeWithConfigWithConfig(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
* @throws AuthenticationConfigException
*
* @requires extension curl
*/
Expand All @@ -145,6 +160,8 @@ public function testInvokeWithConfigWithConfig2(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
* @throws AuthenticationConfigException
*
* @requires extension curl
*/
Expand Down
19 changes: 16 additions & 3 deletions tests/Client/ElasticsearchV8FactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@

final class ElasticsearchV8FactoryTest extends TestCase
{
/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithoutConfig(): void
{
if (!class_exists(V8Client::class)) {
Expand All @@ -47,7 +50,10 @@ public function testInvokeWithoutConfig(): void
$factory($container, '');
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithEmptyConfig(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -67,7 +73,10 @@ public function testInvokeWithEmptyConfig(): void
$factory($container, '', []);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithConfigWithWrongClient(): void
{
if (!class_exists(V8Client::class)) {
Expand All @@ -93,6 +102,7 @@ public function testInvokeWithConfigWithWrongClient(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
*
* @requires extension curl
*/
Expand All @@ -119,6 +129,7 @@ public function testInvokeWithConfigWithConfig(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
*
* @requires extension curl
*/
Expand All @@ -145,6 +156,7 @@ public function testInvokeWithConfigWithConfig2(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
*
* @requires extension curl
*/
Expand All @@ -171,6 +183,7 @@ public function testInvokeWithConfigWithConfig3(): void

/**
* @throws Exception
* @throws ServiceNotCreatedException
*
* @requires extension curl
*/
Expand Down
30 changes: 24 additions & 6 deletions tests/ClientPluginManagerFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@

final class ClientPluginManagerFactoryTest extends TestCase
{
/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotFoundException
*/
public function testInvoke1(): void
{
$requestedName = HtmlFormatter::class;
Expand All @@ -48,7 +51,10 @@ public function testInvoke1(): void
);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotFoundException
*/
public function testInvoke2(): void
{
$requestedName = HtmlFormatter::class;
Expand Down Expand Up @@ -76,7 +82,10 @@ public function testInvoke2(): void
);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotFoundException
*/
public function testInvoke3(): void
{
$requestedName = HtmlFormatter::class;
Expand Down Expand Up @@ -107,7 +116,10 @@ public function testInvoke3(): void
$factory($container, $requestedName, $options);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotFoundException
*/
public function testInvoke4(): void
{
$requestedName = HtmlFormatter::class;
Expand Down Expand Up @@ -138,7 +150,10 @@ public function testInvoke4(): void
);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotFoundException
*/
public function testInvoke5(): void
{
$requestedName = HtmlFormatter::class;
Expand Down Expand Up @@ -169,7 +184,10 @@ public function testInvoke5(): void
);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotFoundException
*/
public function testInvoke6(): void
{
$requestedName = HtmlFormatter::class;
Expand Down
20 changes: 16 additions & 4 deletions tests/Formatter/ElasticaFormatterFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@

final class ElasticaFormatterFactoryTest extends TestCase
{
/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithoutConfig(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -42,7 +45,10 @@ public function testInvokeWithoutConfig(): void
$factory($container, '');
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithoutIndex(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -62,7 +68,10 @@ public function testInvokeWithoutIndex(): void
$factory($container, '', []);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithIndex(): void
{
$index = 'abc';
Expand Down Expand Up @@ -93,7 +102,10 @@ public function testInvokeWithIndex(): void
);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithIndexAndType(): void
{
$maxNormalizeDepth = 42;
Expand Down
20 changes: 16 additions & 4 deletions tests/Formatter/ElasticsearchFormatterFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@

final class ElasticsearchFormatterFactoryTest extends TestCase
{
/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithoutConfig(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -43,7 +46,10 @@ public function testInvokeWithoutConfig(): void
$factory($container, '');
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithoutIndex(): void
{
$container = $this->getMockBuilder(ContainerInterface::class)
Expand All @@ -63,7 +69,10 @@ public function testInvokeWithoutIndex(): void
$factory($container, '', []);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithIndex(): void
{
$index = 'abc';
Expand Down Expand Up @@ -94,7 +103,10 @@ public function testInvokeWithIndex(): void
);
}

/** @throws Exception */
/**
* @throws Exception
* @throws ServiceNotCreatedException
*/
public function testInvokeWithIndexAndType(): void
{
$maxNormalizeDepth = 42;
Expand Down
Loading