Skip to content

Commit

Permalink
Merge pull request #19 from lamoda/up_guzzle_version
Browse files Browse the repository at this point in the history
fix guzzle version to 6.3 or 7.5
  • Loading branch information
tihonovgn authored Sep 11, 2023
2 parents 7f5634b + 33600e3 commit f2d5fdb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"php": "^7.4",
"jms/serializer": "^3.4",
"symfony/validator": "^4.0 || ^5.0",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/guzzle": "^6.3 || ^7.5",
"paillechat/php-enum": "~1.1.0",
"doctrine/annotations": "^1.7",
"doctrine/cache": "^1.6"
Expand Down
19 changes: 14 additions & 5 deletions tests/Integrational/V5/AtolApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,20 @@

final class AtolApiTest extends AtolApiTestCase
{
private string $login;

private string $password;

private string $groupCode;
/**
* @var string
*/
private $login;

/**
* @var string
*/
private $password;

/**
* @var string
*/
private $groupCode;

protected function setUp(): void
{
Expand Down

0 comments on commit f2d5fdb

Please sign in to comment.