diff --git a/composer.lock b/composer.lock index 47bd5ea..25b2a1b 100644 --- a/composer.lock +++ b/composer.lock @@ -848,20 +848,20 @@ }, { "name": "league/oauth2-client", - "version": "2.4.1", + "version": "2.5.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "cc114abc622a53af969e8664722e84ca36257530" + "reference": "d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/cc114abc622a53af969e8664722e84ca36257530", - "reference": "cc114abc622a53af969e8664722e84ca36257530", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb", + "reference": "d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.0", + "guzzlehttp/guzzle": "^6.0 || ^7.0", "paragonie/random_compat": "^1|^2|^9.99", "php": "^5.6|^7.0" }, @@ -911,7 +911,7 @@ "oauth2", "single sign on" ], - "time": "2018-11-22T18:33:57+00:00" + "time": "2020-07-18T17:54:32+00:00" }, { "name": "paragonie/random_compat", @@ -2901,16 +2901,16 @@ }, { "name": "typhonius/acquia-php-sdk-v2", - "version": "2.0.13", + "version": "2.0.14", "source": { "type": "git", "url": "https://github.com/typhonius/acquia-php-sdk-v2.git", - "reference": "17e8c10fe121a15784e763f061f6263e8d7699af" + "reference": "9432509cc423e5fb05ac31e7cc090ea2e928e654" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/typhonius/acquia-php-sdk-v2/zipball/17e8c10fe121a15784e763f061f6263e8d7699af", - "reference": "17e8c10fe121a15784e763f061f6263e8d7699af", + "url": "https://api.github.com/repos/typhonius/acquia-php-sdk-v2/zipball/9432509cc423e5fb05ac31e7cc090ea2e928e654", + "reference": "9432509cc423e5fb05ac31e7cc090ea2e928e654", "shasum": "" }, "require": { @@ -2951,7 +2951,7 @@ "type": "github" } ], - "time": "2020-06-21T13:31:04+00:00" + "time": "2020-10-06T23:22:41+00:00" } ], "packages-dev": [ @@ -4615,6 +4615,7 @@ "keywords": [ "tokenizer" ], + "abandoned": true, "time": "2019-09-17T06:23:10+00:00" }, { diff --git a/tests/AcquiaCliApplicationTest.php b/tests/AcquiaCliApplicationTest.php index 31a8bfe..d378cbb 100644 --- a/tests/AcquiaCliApplicationTest.php +++ b/tests/AcquiaCliApplicationTest.php @@ -155,7 +155,7 @@ public function testClientUserAgent() $expectedUserAgent = sprintf("%s/%s (https://github.com/typhonius/acquia_cli)", 'AcquiaCli', $version); $actualOptions = $this->client->getOptions(); - $actualUserAgent = $actualOptions['headers']['User-Agent'][0]; + $actualUserAgent = $actualOptions['headers']['User-Agent']; $this->assertSame($expectedUserAgent, $actualUserAgent); }