From d9f2b1a8c90188d4e6b7b13a51cc0c86e4c02f21 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Fri, 2 Aug 2019 15:57:17 +0300 Subject: [PATCH] Upgrade PHPUnit to 8. Replace codeception/base with codeception/codeception due to release bug in the base version. --- api/tests/unit/TestCase.php | 2 +- api/tests/unit/models/FeedbackFormTest.php | 7 +- .../authentication/ForgotPasswordFormTest.php | 4 +- .../models/authentication/LoginFormTest.php | 4 +- .../authentication/RegistrationFormTest.php | 2 +- .../RepeatAccountActivationFormTest.php | 4 +- .../models/AuthenticationFormTest.php | 34 +- .../validators/RequiredValidatorTest.php | 8 +- .../models/OauthClientFormFactoryTest.php | 8 +- .../session/filters/RateLimiterTest.php | 6 +- .../unit/rbac/rules/AccountOwnerTest.php | 6 +- .../unit/rbac/rules/OauthClientOwnerTest.php | 6 +- common/tests/unit/TestCase.php | 2 +- .../EmailsRenderer/ComponentTest.php | 2 +- .../tasks/CreateWebHooksDeliveriesTest.php | 7 +- .../tests/unit/tasks/DeliveryWebHookTest.php | 5 +- .../unit/tasks/PullMojangUsernameTest.php | 4 +- .../SendCurrentEmailConfirmationTest.php | 2 +- .../tasks/SendNewEmailConfirmationTest.php | 2 +- composer.json | 5 +- composer.lock | 621 +++++++++++++----- 21 files changed, 522 insertions(+), 219 deletions(-) diff --git a/api/tests/unit/TestCase.php b/api/tests/unit/TestCase.php index 60e2a4d..c2e62f1 100644 --- a/api/tests/unit/TestCase.php +++ b/api/tests/unit/TestCase.php @@ -13,7 +13,7 @@ class TestCase extends Unit { */ protected $tester; - protected function tearDown() { + protected function tearDown(): void { parent::tearDown(); Mockery::close(); } diff --git a/api/tests/unit/models/FeedbackFormTest.php b/api/tests/unit/models/FeedbackFormTest.php index b3e2cfa..b9cba73 100644 --- a/api/tests/unit/models/FeedbackFormTest.php +++ b/api/tests/unit/models/FeedbackFormTest.php @@ -30,20 +30,19 @@ class FeedbackFormTest extends TestCase { ->getMock(); $model - ->expects($this->any()) ->method('getAccount') - ->will($this->returnValue(new Account([ + ->willReturn(new Account([ 'id' => '123', 'username' => 'Erick', 'email' => 'find-this@email.net', 'created_at' => time() - 86400, - ]))); + ])); $this->assertTrue($model->sendMessage()); /** @var Message $message */ $message = $this->tester->grabLastSentEmail(); $this->assertInstanceOf(Message::class, $message); $data = (string)$message; - $this->assertContains('find-this@email.net', $data); + $this->assertStringContainsString('find-this@email.net', $data); } } diff --git a/api/tests/unit/models/authentication/ForgotPasswordFormTest.php b/api/tests/unit/models/authentication/ForgotPasswordFormTest.php index d8ace21..3ee8114 100644 --- a/api/tests/unit/models/authentication/ForgotPasswordFormTest.php +++ b/api/tests/unit/models/authentication/ForgotPasswordFormTest.php @@ -1,4 +1,6 @@ set(ReCaptchaValidator::class, new class(mock(ClientInterface::class)) extends ReCaptchaValidator { public function validateValue($value) { diff --git a/api/tests/unit/models/authentication/LoginFormTest.php b/api/tests/unit/models/authentication/LoginFormTest.php index 35e7615..384e63a 100644 --- a/api/tests/unit/models/authentication/LoginFormTest.php +++ b/api/tests/unit/models/authentication/LoginFormTest.php @@ -15,13 +15,13 @@ class LoginFormTest extends TestCase { private $originalRemoteAddr; - protected function setUp() { + protected function setUp(): void { $this->originalRemoteAddr = $_SERVER['REMOTE_ADDR'] ?? null; $_SERVER['REMOTE_ADDR'] = '127.0.0.1'; parent::setUp(); } - protected function tearDown() { + protected function tearDown(): void { parent::tearDown(); $_SERVER['REMOTE_ADDR'] = $this->originalRemoteAddr; } diff --git a/api/tests/unit/models/authentication/RegistrationFormTest.php b/api/tests/unit/models/authentication/RegistrationFormTest.php index cc61563..eb4e472 100644 --- a/api/tests/unit/models/authentication/RegistrationFormTest.php +++ b/api/tests/unit/models/authentication/RegistrationFormTest.php @@ -22,7 +22,7 @@ use const common\LATEST_RULES_VERSION; class RegistrationFormTest extends TestCase { - protected function setUp() { + protected function setUp(): void { parent::setUp(); $this->mockRequest(); Yii::$container->set(ReCaptchaValidator::class, new class(mock(ClientInterface::class)) extends ReCaptchaValidator { diff --git a/api/tests/unit/models/authentication/RepeatAccountActivationFormTest.php b/api/tests/unit/models/authentication/RepeatAccountActivationFormTest.php index e0cdfcd..9e9895f 100644 --- a/api/tests/unit/models/authentication/RepeatAccountActivationFormTest.php +++ b/api/tests/unit/models/authentication/RepeatAccountActivationFormTest.php @@ -1,4 +1,6 @@ set(ReCaptchaValidator::class, new class(mock(ClientInterface::class)) extends ReCaptchaValidator { public function validateValue($value) { diff --git a/api/tests/unit/modules/authserver/models/AuthenticationFormTest.php b/api/tests/unit/modules/authserver/models/AuthenticationFormTest.php index 0cb9288..35e2db2 100644 --- a/api/tests/unit/modules/authserver/models/AuthenticationFormTest.php +++ b/api/tests/unit/modules/authserver/models/AuthenticationFormTest.php @@ -1,7 +1,10 @@ expectException(ForbiddenOperationException::class); + $this->expectExceptionMessage('Invalid credentials. Invalid nickname or password.'); + $authForm = $this->createAuthForm(); $authForm->username = 'wrong-username'; @@ -36,11 +38,10 @@ class AuthenticationFormTest extends TestCase { $authForm->authenticate(); } - /** - * @expectedException \api\modules\authserver\exceptions\ForbiddenOperationException - * @expectedExceptionMessage Invalid credentials. Invalid email or password. - */ public function testAuthenticateByWrongEmailPass() { + $this->expectException(ForbiddenOperationException::class); + $this->expectExceptionMessage('Invalid credentials. Invalid email or password.'); + $authForm = $this->createAuthForm(); $authForm->username = 'wrong-email@ely.by'; @@ -50,11 +51,10 @@ class AuthenticationFormTest extends TestCase { $authForm->authenticate(); } - /** - * @expectedException \api\modules\authserver\exceptions\ForbiddenOperationException - * @expectedExceptionMessage This account has been suspended. - */ public function testAuthenticateByValidCredentialsIntoBlockedAccount() { + $this->expectException(ForbiddenOperationException::class); + $this->expectExceptionMessage('This account has been suspended.'); + $authForm = $this->createAuthForm(Account::STATUS_BANNED); $authForm->username = 'dummy'; @@ -71,7 +71,7 @@ class AuthenticationFormTest extends TestCase { $minecraftAccessKey->access_token = Uuid::uuid4(); $authForm->expects($this->once()) ->method('createMinecraftAccessToken') - ->will($this->returnValue($minecraftAccessKey)); + ->willReturn($minecraftAccessKey); $authForm->username = 'dummy'; $authForm->password = 'password_0'; @@ -122,18 +122,18 @@ class AuthenticationFormTest extends TestCase { $account->status = $status; $account->setPassword('password_0'); - $loginForm->expects($this->any()) + $loginForm ->method('getAccount') - ->will($this->returnValue($account)); + ->willReturn($account); /** @var AuthenticationForm|\PHPUnit\Framework\MockObject\MockObject $authForm */ $authForm = $this->getMockBuilder(AuthenticationForm::class) ->setMethods(['createLoginForm', 'createMinecraftAccessToken']) ->getMock(); - $authForm->expects($this->any()) + $authForm ->method('createLoginForm') - ->will($this->returnValue($loginForm)); + ->willReturn($loginForm); return $authForm; } diff --git a/api/tests/unit/modules/authserver/validators/RequiredValidatorTest.php b/api/tests/unit/modules/authserver/validators/RequiredValidatorTest.php index e31704b..254545f 100644 --- a/api/tests/unit/modules/authserver/validators/RequiredValidatorTest.php +++ b/api/tests/unit/modules/authserver/validators/RequiredValidatorTest.php @@ -1,6 +1,9 @@ assertNull($this->callProtected($validator, 'validateValue', 'dummy')); } - /** - * @expectedException \api\modules\authserver\exceptions\IllegalArgumentException - */ public function testValidateValueEmpty() { + $this->expectException(IllegalArgumentException::class); + $validator = new RequiredValidator(); $this->assertNull($this->callProtected($validator, 'validateValue', '')); } diff --git a/api/tests/unit/modules/oauth/models/OauthClientFormFactoryTest.php b/api/tests/unit/modules/oauth/models/OauthClientFormFactoryTest.php index 2b26b2f..60ac323 100644 --- a/api/tests/unit/modules/oauth/models/OauthClientFormFactoryTest.php +++ b/api/tests/unit/modules/oauth/models/OauthClientFormFactoryTest.php @@ -1,6 +1,9 @@ assertSame('localhost:12345', $requestForm->minecraftServerIp); } - /** - * @expectedException \api\modules\oauth\exceptions\UnsupportedOauthClientType - */ public function testCreateUnknownType() { + $this->expectException(UnsupportedOauthClientType::class); + $client = new OauthClient(); $client->type = 'unknown-type'; OauthClientFormFactory::create($client); diff --git a/api/tests/unit/modules/session/filters/RateLimiterTest.php b/api/tests/unit/modules/session/filters/RateLimiterTest.php index 2860059..94ff1de 100644 --- a/api/tests/unit/modules/session/filters/RateLimiterTest.php +++ b/api/tests/unit/modules/session/filters/RateLimiterTest.php @@ -10,6 +10,7 @@ use Faker\Provider\Internet; use Yii; use yii\redis\Connection; use yii\web\Request; +use yii\web\TooManyRequestsHttpException; class RateLimiterTest extends TestCase { @@ -63,10 +64,9 @@ class RateLimiterTest extends TestCase { $filter->checkRateLimit(null, $request, null, null); } - /** - * @expectedException \yii\web\TooManyRequestsHttpException - */ public function testCheckRateLimiter() { + $this->expectException(TooManyRequestsHttpException::class); + /** @var Connection|\PHPUnit\Framework\MockObject\MockObject $redis */ $redis = $this->getMockBuilder(Connection::class) ->setMethods(['executeCommand']) diff --git a/api/tests/unit/rbac/rules/AccountOwnerTest.php b/api/tests/unit/rbac/rules/AccountOwnerTest.php index 065c9bb..679d2ee 100644 --- a/api/tests/unit/rbac/rules/AccountOwnerTest.php +++ b/api/tests/unit/rbac/rules/AccountOwnerTest.php @@ -7,6 +7,7 @@ use api\components\User\IdentityInterface; use api\rbac\rules\AccountOwner; use common\models\Account; use common\tests\unit\TestCase; +use InvalidArgumentException; use Yii; use yii\rbac\Item; use const common\LATEST_RULES_VERSION; @@ -53,10 +54,9 @@ class AccountOwnerTest extends TestCase { $this->assertFalse($rule->execute('token', $item, ['accountId' => 1, 'optionalRules' => true])); } - /** - * @expectedException \InvalidArgumentException - */ public function testExecuteWithoutAccountId() { + $this->expectException(InvalidArgumentException::class); + $rule = new AccountOwner(); $this->assertFalse($rule->execute('token', new Item(), [])); } diff --git a/api/tests/unit/rbac/rules/OauthClientOwnerTest.php b/api/tests/unit/rbac/rules/OauthClientOwnerTest.php index c699415..b828a0c 100644 --- a/api/tests/unit/rbac/rules/OauthClientOwnerTest.php +++ b/api/tests/unit/rbac/rules/OauthClientOwnerTest.php @@ -9,6 +9,7 @@ use api\rbac\rules\OauthClientOwner; use common\models\Account; use common\tests\fixtures\OauthClientFixture; use common\tests\unit\TestCase; +use InvalidArgumentException; use Yii; use yii\rbac\Item; use const common\LATEST_RULES_VERSION; @@ -59,10 +60,9 @@ class OauthClientOwnerTest extends TestCase { $this->assertFalse($rule->execute('token', $item, ['accountId' => 1])); } - /** - * @expectedException \InvalidArgumentException - */ public function testExecuteWithoutClientId() { + $this->expectException(InvalidArgumentException::class); + $rule = new OauthClientOwner(); $this->assertFalse($rule->execute('token', new Item(), [])); } diff --git a/common/tests/unit/TestCase.php b/common/tests/unit/TestCase.php index 6e5d085..7c46c95 100644 --- a/common/tests/unit/TestCase.php +++ b/common/tests/unit/TestCase.php @@ -13,7 +13,7 @@ class TestCase extends Unit { */ protected $tester; - protected function tearDown() { + protected function tearDown(): void { parent::tearDown(); Mockery::close(); } diff --git a/common/tests/unit/components/EmailsRenderer/ComponentTest.php b/common/tests/unit/components/EmailsRenderer/ComponentTest.php index ea95708..e57203d 100644 --- a/common/tests/unit/components/EmailsRenderer/ComponentTest.php +++ b/common/tests/unit/components/EmailsRenderer/ComponentTest.php @@ -20,7 +20,7 @@ class ComponentTest extends TestCase { */ private $component; - protected function setUp() { + protected function setUp(): void { parent::setUp(); $this->api = $this->createMock(Api::class); diff --git a/common/tests/unit/tasks/CreateWebHooksDeliveriesTest.php b/common/tests/unit/tasks/CreateWebHooksDeliveriesTest.php index f67a186..5503af3 100644 --- a/common/tests/unit/tasks/CreateWebHooksDeliveriesTest.php +++ b/common/tests/unit/tasks/CreateWebHooksDeliveriesTest.php @@ -38,9 +38,8 @@ class CreateWebHooksDeliveriesTest extends TestCase { 'status' => 0, ]; $result = CreateWebHooksDeliveries::createAccountEdit($account, $changedAttributes); - $this->assertInstanceOf(CreateWebHooksDeliveries::class, $result); $this->assertSame('account.edit', $result->type); - $this->assertArraySubset([ + $this->assertEmpty(array_diff_assoc([ 'id' => 123, 'uuid' => 'afc8dc7a-4bbf-4d3a-8699-68890088cf84', 'username' => 'mock-username', @@ -48,8 +47,8 @@ class CreateWebHooksDeliveriesTest extends TestCase { 'lang' => 'en', 'isActive' => true, 'registered' => '2018-07-08T00:13:34+00:00', - 'changedAttributes' => $changedAttributes, - ], $result->payloads); + ], $result->payloads)); + $this->assertSame($changedAttributes, $result->payloads['changedAttributes']); } public function testExecute() { diff --git a/common/tests/unit/tasks/DeliveryWebHookTest.php b/common/tests/unit/tasks/DeliveryWebHookTest.php index e2f980e..586212b 100644 --- a/common/tests/unit/tasks/DeliveryWebHookTest.php +++ b/common/tests/unit/tasks/DeliveryWebHookTest.php @@ -90,10 +90,9 @@ class DeliveryWebHookTest extends TestCase { $task->execute(mock(Queue::class)); } - /** - * @expectedException \GuzzleHttp\Exception\ServerException - */ public function testExecuteUnhandledException() { + $this->expectException(ServerException::class); + $this->response = new Response(502); $task = $this->createMockedTask(); $task->type = 'account.edit'; diff --git a/common/tests/unit/tasks/PullMojangUsernameTest.php b/common/tests/unit/tasks/PullMojangUsernameTest.php index 4435f39..3e0caf5 100644 --- a/common/tests/unit/tasks/PullMojangUsernameTest.php +++ b/common/tests/unit/tasks/PullMojangUsernameTest.php @@ -50,7 +50,7 @@ class PullMojangUsernameTest extends TestCase { public function testExecuteUsernameExists() { $this->mockedMethod->willReturn(new ProfileInfo('069a79f444e94726a5befca90e38aaf5', 'Notch')); - /** @var \common\models\MojangUsername $mojangUsernameFixture */ + /** @var MojangUsername $mojangUsernameFixture */ $mojangUsernameFixture = $this->tester->grabFixture('mojangUsernames', 'Notch'); $task = new PullMojangUsername(); $task->username = 'Notch'; @@ -89,7 +89,7 @@ class PullMojangUsernameTest extends TestCase { } public function testExecuteRemoveIfExistsNoMore() { - $this->mockedMethod->willThrowException(new NoContentException(new Request('', ''), new Response())); + $this->mockedMethod->willThrowException(new NoContentException(new Request('GET', ''), new Response())); $username = $this->tester->grabFixture('mojangUsernames', 'not-exists')['username']; $task = new PullMojangUsername(); diff --git a/common/tests/unit/tasks/SendCurrentEmailConfirmationTest.php b/common/tests/unit/tasks/SendCurrentEmailConfirmationTest.php index 768001b..6301d88 100644 --- a/common/tests/unit/tasks/SendCurrentEmailConfirmationTest.php +++ b/common/tests/unit/tasks/SendCurrentEmailConfirmationTest.php @@ -41,7 +41,7 @@ class SendCurrentEmailConfirmationTest extends TestCase { $this->assertSame(['mock@ely.by' => 'mock-username'], $email->getTo()); $this->assertSame('Ely.by Account change E-mail confirmation', $email->getSubject()); $children = $email->getSwiftMessage()->getChildren()[0]; - $this->assertContains('GFEDCBA', $children->getBody()); + $this->assertStringContainsString('GFEDCBA', $children->getBody()); } } diff --git a/common/tests/unit/tasks/SendNewEmailConfirmationTest.php b/common/tests/unit/tasks/SendNewEmailConfirmationTest.php index d6ec76d..33b2444 100644 --- a/common/tests/unit/tasks/SendNewEmailConfirmationTest.php +++ b/common/tests/unit/tasks/SendNewEmailConfirmationTest.php @@ -41,7 +41,7 @@ class SendNewEmailConfirmationTest extends TestCase { $this->assertSame(['mock@ely.by' => 'mock-username'], $email->getTo()); $this->assertSame('Ely.by Account new E-mail confirmation', $email->getSubject()); $children = $email->getSwiftMessage()->getChildren()[0]; - $this->assertContains('GFEDCBA', $children->getBody()); + $this->assertStringContainsString('GFEDCBA', $children->getBody()); } } diff --git a/composer.json b/composer.json index d58d470..6f06d85 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ "yiisoft/yii2-swiftmailer": "~2.1.0" }, "require-dev": { - "codeception/base": "^3.0.0", + "codeception/codeception": "^3.0", "codeception/specify": "^1.0.0", "ely/php-code-style": "^0.3.0", "flow/jsonpath": "^0.4.0", @@ -47,7 +47,8 @@ "symfony/polyfill-ctype": "*", "symfony/polyfill-mbstring": "*", "symfony/polyfill-php70": "*", - "symfony/polyfill-php72": "*" + "symfony/polyfill-php72": "*", + "symfony/polyfill-php73": "*" }, "repositories": [ { diff --git a/composer.lock b/composer.lock index 0b2b56d..c7464af 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2c49fce9e25e3bc27dc3ae43ac0c079b", + "content-hash": "35095ab389bcc73cacbafceffa74fb71", "packages": [ { "name": "bacon/bacon-qr-code", @@ -984,33 +984,37 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.5.2", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "9f83dded91781a01c63574e387eaa769be769115" + "reference": "239400de7a173fe9901b9ac7c06497751f00727a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115", - "reference": "9f83dded91781a01c63574e387eaa769be769115", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a", "shasum": "" }, "require": { "php": ">=5.4.0", "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5" + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" }, "provide": { "psr/http-message-implementation": "1.0" }, "require-dev": { + "ext-zlib": "*", "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" }, + "suggest": { + "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev" + "dev-master": "1.6-dev" } }, "autoload": { @@ -1047,7 +1051,7 @@ "uri", "url" ], - "time": "2018-12-04T20:46:45+00:00" + "time": "2019-07-01T23:21:34+00:00" }, { "name": "jakubledl/dissect", @@ -1559,24 +1563,24 @@ }, { "name": "ralouphie/getallheaders", - "version": "2.0.5", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa" + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa", - "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "php": ">=5.3" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "~3.7.0", - "satooshi/php-coveralls": ">=1.0" + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, "type": "library", "autoload": { @@ -1595,7 +1599,7 @@ } ], "description": "A polyfill for getallheaders.", - "time": "2016-02-11T07:05:27+00:00" + "time": "2019-03-08T08:55:37+00:00" }, { "name": "ramsey/uuid", @@ -1865,16 +1869,16 @@ }, { "name": "symfony/finder", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "e45135658bd6c14b61850bf131c4f09a55133f69" + "reference": "9638d41e3729459860bb96f6247ccb61faaa45f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/e45135658bd6c14b61850bf131c4f09a55133f69", - "reference": "e45135658bd6c14b61850bf131c4f09a55133f69", + "url": "https://api.github.com/repos/symfony/finder/zipball/9638d41e3729459860bb96f6247ccb61faaa45f2", + "reference": "9638d41e3729459860bb96f6247ccb61faaa45f2", "shasum": "" }, "require": { @@ -1883,7 +1887,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -1910,7 +1914,7 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-04-06T13:51:08+00:00" + "time": "2019-06-28T13:16:30+00:00" }, { "name": "symfony/http-foundation", @@ -2603,17 +2607,17 @@ "time": "2019-01-16T14:22:17+00:00" }, { - "name": "codeception/base", - "version": "3.0.0", + "name": "codeception/codeception", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/Codeception/base.git", - "reference": "86f10d5dcb05895e76711e6d25e5eb8ead354a09" + "url": "https://github.com/Codeception/Codeception.git", + "reference": "feb566a9dc26993611602011ae3834d8e3c1dd7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/base/zipball/86f10d5dcb05895e76711e6d25e5eb8ead354a09", - "reference": "86f10d5dcb05895e76711e6d25e5eb8ead354a09", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/feb566a9dc26993611602011ae3834d8e3c1dd7f", + "reference": "feb566a9dc26993611602011ae3834d8e3c1dd7f", "shasum": "" }, "require": { @@ -2623,6 +2627,8 @@ "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", + "facebook/webdriver": "^1.6.0", + "guzzlehttp/guzzle": "^6.3.0", "guzzlehttp/psr7": "~1.4", "hoa/console": "~3.0", "php": ">=5.6.0 <8.0", @@ -2636,6 +2642,8 @@ }, "require-dev": { "codeception/specify": "~0.3", + "doctrine/annotations": "^1", + "doctrine/orm": "^2", "flow/jsonpath": "~0.2", "monolog/monolog": "~1.8", "pda/pheanstalk": "~3.0", @@ -2690,25 +2698,26 @@ "functional testing", "unit testing" ], - "time": "2019-04-24T12:13:51+00:00" + "time": "2019-07-18T16:21:08+00:00" }, { "name": "codeception/phpunit-wrapper", - "version": "7.7.1", + "version": "8.0.4", "source": { "type": "git", "url": "https://github.com/Codeception/phpunit-wrapper.git", - "reference": "ab04a956264291505ea84998f43cf91639b4575d" + "reference": "7090736f36b4398cae6ef838b9a2bdfe8d8d104b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/ab04a956264291505ea84998f43cf91639b4575d", - "reference": "ab04a956264291505ea84998f43cf91639b4575d", + "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7090736f36b4398cae6ef838b9a2bdfe8d8d104b", + "reference": "7090736f36b4398cae6ef838b9a2bdfe8d8d104b", "shasum": "" }, "require": { - "phpunit/php-code-coverage": "^6.0", - "phpunit/phpunit": "7.5.*", + "php": ">=7.2", + "phpunit/php-code-coverage": "^7.0", + "phpunit/phpunit": "^8.0", "sebastian/comparator": "^3.0", "sebastian/diff": "^3.0" }, @@ -2733,26 +2742,26 @@ } ], "description": "PHPUnit classes used by Codeception", - "time": "2019-02-26T20:35:32+00:00" + "time": "2019-02-27T12:58:57+00:00" }, { "name": "codeception/specify", - "version": "1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/Codeception/Specify.git", - "reference": "504ac7a882e6f7226b0cff44c72a6c0bbd0bad95" + "reference": "e3fefa22f2304170024b9242b2bd8b01cf5a2ac0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Specify/zipball/504ac7a882e6f7226b0cff44c72a6c0bbd0bad95", - "reference": "504ac7a882e6f7226b0cff44c72a6c0bbd0bad95", + "url": "https://api.github.com/repos/Codeception/Specify/zipball/e3fefa22f2304170024b9242b2bd8b01cf5a2ac0", + "reference": "e3fefa22f2304170024b9242b2bd8b01cf5a2ac0", "shasum": "" }, "require": { "myclabs/deep-copy": "~1.1", "php": ">=7.1.0", - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": ">=7.0 <9.0" }, "type": "library", "autoload": { @@ -2771,7 +2780,7 @@ } ], "description": "BDD code blocks for PHPUnit and Codeception", - "time": "2018-03-12T23:55:10+00:00" + "time": "2019-08-01T20:09:26+00:00" }, { "name": "codeception/stub", @@ -3014,6 +3023,66 @@ ], "time": "2019-02-23T17:29:08+00:00" }, + { + "name": "facebook/webdriver", + "version": "1.7.1", + "source": { + "type": "git", + "url": "https://github.com/facebook/php-webdriver.git", + "reference": "e43de70f3c7166169d0f14a374505392734160e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/e43de70f3c7166169d0f14a374505392734160e5", + "reference": "e43de70f3c7166169d0f14a374505392734160e5", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "ext-zip": "*", + "php": "^5.6 || ~7.0", + "symfony/process": "^2.8 || ^3.1 || ^4.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "jakub-onderka/php-parallel-lint": "^0.9.2", + "php-coveralls/php-coveralls": "^2.0", + "php-mock/php-mock-phpunit": "^1.1", + "phpunit/phpunit": "^5.7", + "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0", + "squizlabs/php_codesniffer": "^2.6", + "symfony/var-dumper": "^3.3 || ^4.0" + }, + "suggest": { + "ext-SimpleXML": "For Firefox profile creation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-community": "1.5-dev" + } + }, + "autoload": { + "psr-4": { + "Facebook\\WebDriver\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "A PHP client for Selenium WebDriver", + "homepage": "https://github.com/facebook/php-webdriver", + "keywords": [ + "facebook", + "php", + "selenium", + "webdriver" + ], + "time": "2019-06-13T08:02:18+00:00" + }, { "name": "flow/jsonpath", "version": "0.4.0", @@ -4378,16 +4447,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.8.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", - "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76", + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76", "shasum": "" }, "require": { @@ -4408,8 +4477,8 @@ } }, "autoload": { - "psr-0": { - "Prophecy\\": "src/" + "psr-4": { + "Prophecy\\": "src/Prophecy" } }, "notification-url": "https://packagist.org/downloads/", @@ -4437,44 +4506,44 @@ "spy", "stub" ], - "time": "2018-08-05T17:53:17+00:00" + "time": "2019-06-13T12:50:23+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "6.1.4", + "version": "7.0.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" + "reference": "7743bbcfff2a907e9ee4a25be13d0f8ec5e73800" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", - "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7743bbcfff2a907e9ee4a25be13d0f8ec5e73800", + "reference": "7743bbcfff2a907e9ee4a25be13d0f8ec5e73800", "shasum": "" }, "require": { "ext-dom": "*", "ext-xmlwriter": "*", - "php": "^7.1", - "phpunit/php-file-iterator": "^2.0", + "php": "^7.2", + "phpunit/php-file-iterator": "^2.0.2", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^3.0", + "phpunit/php-token-stream": "^3.1.0", "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^3.1 || ^4.0", + "sebastian/environment": "^4.2.2", "sebastian/version": "^2.0.1", - "theseer/tokenizer": "^1.1" + "theseer/tokenizer": "^1.1.3" }, "require-dev": { - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^8.2.2" }, "suggest": { - "ext-xdebug": "^2.6.0" + "ext-xdebug": "^2.7.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.1-dev" + "dev-master": "7.0-dev" } }, "autoload": { @@ -4489,8 +4558,8 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "role": "lead", + "email": "sebastian@phpunit.de" } ], "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", @@ -4500,7 +4569,7 @@ "testing", "xunit" ], - "time": "2018-10-31T16:06:48+00:00" + "time": "2019-07-25T05:31:54+00:00" }, { "name": "phpunit/php-file-iterator", @@ -4595,16 +4664,16 @@ }, { "name": "phpunit/php-timer", - "version": "2.1.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059" + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059", - "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", "shasum": "" }, "require": { @@ -4631,8 +4700,8 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "role": "lead", + "email": "sebastian@phpunit.de" } ], "description": "Utility class for timing", @@ -4640,20 +4709,20 @@ "keywords": [ "timer" ], - "time": "2019-02-20T10:12:59+00:00" + "time": "2019-06-07T04:22:29+00:00" }, { "name": "phpunit/php-token-stream", - "version": "3.0.1", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18" + "reference": "e899757bb3df5ff6e95089132f32cd59aac2220a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18", - "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e899757bb3df5ff6e95089132f32cd59aac2220a", + "reference": "e899757bb3df5ff6e95089132f32cd59aac2220a", "shasum": "" }, "require": { @@ -4666,7 +4735,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -4689,57 +4758,56 @@ "keywords": [ "tokenizer" ], - "time": "2018-10-30T05:52:18+00:00" + "time": "2019-07-25T05:29:42+00:00" }, { "name": "phpunit/phpunit", - "version": "7.5.10", + "version": "8.3.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "d7d9cee051d03ed98df6023aad93f7902731a780" + "reference": "21461ce5b162d0f1a0fa658e27f975517c5d4234" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d7d9cee051d03ed98df6023aad93f7902731a780", - "reference": "d7d9cee051d03ed98df6023aad93f7902731a780", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/21461ce5b162d0f1a0fa658e27f975517c5d4234", + "reference": "21461ce5b162d0f1a0fa658e27f975517c5d4234", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.1", + "doctrine/instantiator": "^1.2.0", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", "ext-xml": "*", - "myclabs/deep-copy": "^1.7", - "phar-io/manifest": "^1.0.2", - "phar-io/version": "^2.0", - "php": "^7.1", - "phpspec/prophecy": "^1.7", - "phpunit/php-code-coverage": "^6.0.7", - "phpunit/php-file-iterator": "^2.0.1", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.9.1", + "phar-io/manifest": "^1.0.3", + "phar-io/version": "^2.0.1", + "php": "^7.2", + "phpspec/prophecy": "^1.8.1", + "phpunit/php-code-coverage": "^7.0.7", + "phpunit/php-file-iterator": "^2.0.2", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1", - "sebastian/comparator": "^3.0", - "sebastian/diff": "^3.0", - "sebastian/environment": "^4.0", - "sebastian/exporter": "^3.1", - "sebastian/global-state": "^2.0", + "phpunit/php-timer": "^2.1.2", + "sebastian/comparator": "^3.0.2", + "sebastian/diff": "^3.0.2", + "sebastian/environment": "^4.2.2", + "sebastian/exporter": "^3.1.0", + "sebastian/global-state": "^3.0.0", "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0", + "sebastian/resource-operations": "^2.0.1", + "sebastian/type": "^1.1.3", "sebastian/version": "^2.0.1" }, - "conflict": { - "phpunit/phpunit-mock-objects": "*" - }, "require-dev": { "ext-pdo": "*" }, "suggest": { "ext-soap": "*", "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0" + "phpunit/php-invoker": "^2.0.0" }, "bin": [ "phpunit" @@ -4747,7 +4815,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "7.5-dev" + "dev-master": "8.3-dev" } }, "autoload": { @@ -4762,8 +4830,8 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "role": "lead", + "email": "sebastian@phpunit.de" } ], "description": "The PHP Unit Testing framework.", @@ -4773,7 +4841,7 @@ "testing", "xunit" ], - "time": "2019-05-09T05:06:47+00:00" + "time": "2019-08-02T07:54:25+00:00" }, { "name": "predis/predis", @@ -4825,6 +4893,55 @@ ], "time": "2016-06-16T16:22:20+00:00" }, + { + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "time": "2017-02-14T16:28:37+00:00" + }, { "name": "psr/log", "version": "1.1.0", @@ -5446,23 +5563,26 @@ }, { "name": "sebastian/global-state", - "version": "2.0.0", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", - "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", + "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^7.2", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "ext-dom": "*", + "phpunit/phpunit": "^8.0" }, "suggest": { "ext-uopz": "*" @@ -5470,7 +5590,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -5493,7 +5613,7 @@ "keywords": [ "global state" ], - "time": "2017-04-27T15:39:26+00:00" + "time": "2019-02-01T05:30:01+00:00" }, { "name": "sebastian/object-enumerator", @@ -5682,6 +5802,52 @@ "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "time": "2018-10-04T04:07:39+00:00" }, + { + "name": "sebastian/type", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3", + "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3", + "shasum": "" + }, + "require": { + "php": "^7.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "role": "lead", + "email": "sebastian@phpunit.de" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "time": "2019-07-02T08:10:15+00:00" + }, { "name": "sebastian/version", "version": "2.0.1", @@ -5727,16 +5893,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "c09c18cca96d7067152f78956faf55346c338283" + "reference": "a29dd02a1f3f81b9a15c7730cc3226718ddb55ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c09c18cca96d7067152f78956faf55346c338283", - "reference": "c09c18cca96d7067152f78956faf55346c338283", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a29dd02a1f3f81b9a15c7730cc3226718ddb55ca", + "reference": "a29dd02a1f3f81b9a15c7730cc3226718ddb55ca", "shasum": "" }, "require": { @@ -5745,6 +5911,8 @@ }, "require-dev": { "symfony/css-selector": "~3.4|~4.0", + "symfony/http-client": "^4.3", + "symfony/mime": "^4.3", "symfony/process": "~3.4|~4.0" }, "suggest": { @@ -5753,7 +5921,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -5780,29 +5948,31 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2019-04-07T09:56:43+00:00" + "time": "2019-06-11T15:41:59+00:00" }, { "name": "symfony/console", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81" + "reference": "8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81", - "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81", + "url": "https://api.github.com/repos/symfony/console/zipball/8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9", + "reference": "8b0ae5742ce9aaa8b0075665862c1ca397d1c1d9", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/contracts": "^1.0", - "symfony/polyfill-mbstring": "~1.0" + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/service-contracts": "^1.1" }, "conflict": { "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3", "symfony/process": "<3.3" }, "provide": { @@ -5812,9 +5982,10 @@ "psr/log": "~1.0", "symfony/config": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~3.4|~4.0", + "symfony/event-dispatcher": "^4.3", "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0" + "symfony/process": "~3.4|~4.0", + "symfony/var-dumper": "^4.3" }, "suggest": { "psr/log": "For using the console logger", @@ -5825,7 +5996,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -5852,7 +6023,7 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-04-08T14:23:48+00:00" + "time": "2019-07-24T17:13:59+00:00" }, { "name": "symfony/contracts", @@ -5927,16 +6098,16 @@ }, { "name": "symfony/css-selector", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "48eddf66950fa57996e1be4a55916d65c10c604a" + "reference": "105c98bb0c5d8635bea056135304bd8edcc42b4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a", - "reference": "48eddf66950fa57996e1be4a55916d65c10c604a", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/105c98bb0c5d8635bea056135304bd8edcc42b4d", + "reference": "105c98bb0c5d8635bea056135304bd8edcc42b4d", "shasum": "" }, "require": { @@ -5945,7 +6116,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -5961,14 +6132,14 @@ "MIT" ], "authors": [ - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" @@ -5976,20 +6147,20 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2019-01-16T20:31:39+00:00" + "time": "2019-01-16T21:53:39+00:00" }, { "name": "symfony/dom-crawler", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb" + "reference": "291397232a2eefb3347eaab9170409981eaad0e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/53c97769814c80a84a8403efcf3ae7ae966d53bb", - "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291397232a2eefb3347eaab9170409981eaad0e2", + "reference": "291397232a2eefb3347eaab9170409981eaad0e2", "shasum": "" }, "require": { @@ -5997,7 +6168,11 @@ "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0" }, + "conflict": { + "masterminds/html5": "<2.6" + }, "require-dev": { + "masterminds/html5": "^2.6", "symfony/css-selector": "~3.4|~4.0" }, "suggest": { @@ -6006,7 +6181,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -6033,34 +6208,40 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-02-23T15:17:42+00:00" + "time": "2019-06-13T11:03:18+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02" + "reference": "212b020949331b6531250584531363844b34a94e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/fbce53cd74ac509cbe74b6f227622650ab759b02", - "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/212b020949331b6531250584531363844b34a94e", + "reference": "212b020949331b6531250584531363844b34a94e", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/contracts": "^1.0" + "symfony/event-dispatcher-contracts": "^1.1" }, "conflict": { "symfony/dependency-injection": "<3.4" }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" + }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0", "symfony/expression-language": "~3.4|~4.0", + "symfony/http-foundation": "^3.4|^4.0", + "symfony/service-contracts": "^1.1", "symfony/stopwatch": "~3.4|~4.0" }, "suggest": { @@ -6070,7 +6251,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -6097,7 +6278,65 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-04-06T13:51:08+00:00" + "time": "2019-06-27T06:42:14+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "c61766f4440ca687de1084a5c00b08e167a2575c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c61766f4440ca687de1084a5c00b08e167a2575c", + "reference": "c61766f4440ca687de1084a5c00b08e167a2575c", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "suggest": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-06-20T06:46:26+00:00" }, { "name": "symfony/filesystem", @@ -6203,6 +6442,64 @@ ], "time": "2019-01-16T21:31:25+00:00" }, + { + "name": "symfony/service-contracts", + "version": "v1.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d", + "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/container": "^1.0" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-06-13T11:15:36+00:00" + }, { "name": "symfony/stopwatch", "version": "v4.2.3", @@ -6255,16 +6552,16 @@ }, { "name": "symfony/yaml", - "version": "v4.2.8", + "version": "v4.3.3", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1" + "reference": "34d29c2acd1ad65688f58452fd48a46bd996d5a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/6712daf03ee25b53abb14e7e8e0ede1a770efdb1", - "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1", + "url": "https://api.github.com/repos/symfony/yaml/zipball/34d29c2acd1ad65688f58452fd48a46bd996d5a6", + "reference": "34d29c2acd1ad65688f58452fd48a46bd996d5a6", "shasum": "" }, "require": { @@ -6283,7 +6580,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -6310,20 +6607,20 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-03-30T15:58:42+00:00" + "time": "2019-07-24T14:47:54+00:00" }, { "name": "theseer/tokenizer", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8" + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8", - "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", "shasum": "" }, "require": { @@ -6350,7 +6647,7 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2019-04-04T09:56:43+00:00" + "time": "2019-06-13T22:48:21+00:00" } ], "aliases": [],