From 56f796d1359bbc895ef61f7bfe78109f2b880686 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 6 Sep 2019 11:11:49 -0500 Subject: [PATCH 01/17] add lightning update405 --- lightning.info.yml | 2 ++ src/Update/Update405.php | 54 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 src/Update/Update405.php diff --git a/lightning.info.yml b/lightning.info.yml index e244b8061..915e48b71 100644 --- a/lightning.info.yml +++ b/lightning.info.yml @@ -3,10 +3,12 @@ core: 8.x type: profile description: 'A fast and feature-rich Drupal distribution.' install: + - autosave_form - block_content - breakpoint - ckeditor - config + - conflict - contextual - menu_link_content - datetime diff --git a/src/Update/Update405.php b/src/Update/Update405.php new file mode 100644 index 000000000..fe6a8e1e6 --- /dev/null +++ b/src/Update/Update405.php @@ -0,0 +1,54 @@ +moduleInstaller = $module_installer; + } + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container) { + return new static( + $container->get('module_installer') + ); + } + + /** + * Enables the Autosave Form and Conflict modules. + * + * @update + * + * @ask Do you want to enable the Autosave Form and Conflict modules? + */ + public function enableAutosaveForm() { + $this->moduleInstaller->install(['autosave_form', 'conflict']); + } +} From 0e3e148b927618fd98fb7aa286483529e1f822eb Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 6 Sep 2019 11:18:15 -0500 Subject: [PATCH 02/17] fix whitespace --- src/Update/Update405.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Update/Update405.php b/src/Update/Update405.php index fe6a8e1e6..0782fd474 100644 --- a/src/Update/Update405.php +++ b/src/Update/Update405.php @@ -1,6 +1,5 @@ moduleInstaller->install(['autosave_form', 'conflict']); } } + From 896c6993b4314b6a2e7b976b884ce2271a940bfb Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 6 Sep 2019 14:57:41 -0500 Subject: [PATCH 03/17] Update405 functional test is fucked up --- tests/src/Functional/Update405Test.php | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/src/Functional/Update405Test.php diff --git a/tests/src/Functional/Update405Test.php b/tests/src/Functional/Update405Test.php new file mode 100644 index 000000000..e8a00a097 --- /dev/null +++ b/tests/src/Functional/Update405Test.php @@ -0,0 +1,27 @@ +container->get('module_handler'); + + $this->assertFalse($moduleHandler->moduleExists('autosave_form')); + $this->assertFalse($moduleHandler->moduleExists('conflict')); + + $updateHandler = Update405::create($this->container); + + $updateHandler->enableAutosaveForm(); + } +} From 64aeee5d28420f8b6cc3aea85806cfe47fc1f013 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 6 Sep 2019 15:46:27 -0500 Subject: [PATCH 04/17] Update405 test now works! yay --- .../{Functional => Kernel}/Update405Test.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) rename tests/src/{Functional => Kernel}/Update405Test.php (57%) diff --git a/tests/src/Functional/Update405Test.php b/tests/src/Kernel/Update405Test.php similarity index 57% rename from tests/src/Functional/Update405Test.php rename to tests/src/Kernel/Update405Test.php index e8a00a097..7b71088f6 100644 --- a/tests/src/Functional/Update405Test.php +++ b/tests/src/Kernel/Update405Test.php @@ -1,18 +1,19 @@ container->get('module_handler'); @@ -23,5 +24,11 @@ public function testEnableAutosaveForm() { $updateHandler = Update405::create($this->container); $updateHandler->enableAutosaveForm(); + + $moduleHandler = $this->container->get('module_handler'); + + $this->assertTrue($moduleHandler->moduleExists('autosave_form')); + $this->assertTrue($moduleHandler->moduleExists('conflict')); } } + From d6a4e70b2130c00ddc2485f31542499e98c1dc11 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Mon, 9 Sep 2019 11:12:27 -0500 Subject: [PATCH 05/17] code consolidation and comments --- tests/src/Kernel/Update405Test.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/src/Kernel/Update405Test.php b/tests/src/Kernel/Update405Test.php index 7b71088f6..312859323 100644 --- a/tests/src/Kernel/Update405Test.php +++ b/tests/src/Kernel/Update405Test.php @@ -6,14 +6,16 @@ use Drupal\lightning\Update\Update405; /** - * @group lightning - */ +* @group lightning +* @coversDefaultClass \Drupal\lightning\Update\Update405 +*/ class Update405Test extends KernelTestBase { protected static $modules = array('system'); - /** - */ + /** + * @covers ::enableAutosaveForm + */ public function testEnableAutosaveForm() { $moduleHandler = $this->container->get('module_handler'); @@ -21,9 +23,7 @@ public function testEnableAutosaveForm() { $this->assertFalse($moduleHandler->moduleExists('autosave_form')); $this->assertFalse($moduleHandler->moduleExists('conflict')); - $updateHandler = Update405::create($this->container); - - $updateHandler->enableAutosaveForm(); + Update405::create($this->container)->enableAutosaveForm(); $moduleHandler = $this->container->get('module_handler'); From 957463c32376dfa992acc50c9b29b766a826e98d Mon Sep 17 00:00:00 2001 From: kdruckman Date: Mon, 9 Sep 2019 12:48:45 -0500 Subject: [PATCH 06/17] update composer with current lightning_workflow version --- composer.json | 2 +- composer.lock | 784 +++++++++++++++++++++++++------------------ drupal-org-core.make | 2 +- drupal-org.make | 14 +- 4 files changed, 476 insertions(+), 326 deletions(-) diff --git a/composer.json b/composer.json index e46795ad9..92ccec449 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "drupal/lightning_core": "^4.5", "drupal/lightning_layout": "^2.1", "drupal/lightning_media": "^3.11", - "drupal/lightning_workflow": "^3.7", + "drupal/lightning_workflow": "^3.9", "oomphinc/composer-installers-extender": "^1.1" }, "require-dev": { diff --git a/composer.lock b/composer.lock index 64a26c5a3..9d6a778aa 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": "3326eb4d04e6e7b394facbf54dc5dee2", + "content-hash": "51d0cb538d22798575235d1d27b1ba86", "packages": [ { "name": "asm89/stack-cors", @@ -114,7 +114,7 @@ "version": "v1.8.1", "source": { "type": "git", - "url": "git@github.com:kenwheeler/slick.git", + "url": "https://github.com/kenwheeler/slick.git", "reference": "0f40c9d6a02a5c08b5f4dd80fdada3a854a59bee" }, "dist": { @@ -224,16 +224,16 @@ }, { "name": "composer/installers", - "version": "v1.6.0", + "version": "v1.7.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b" + "reference": "141b272484481432cda342727a427dc1e206bfa0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b", - "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b", + "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0", + "reference": "141b272484481432cda342727a427dc1e206bfa0", "shasum": "" }, "require": { @@ -289,6 +289,7 @@ "RadPHP", "SMF", "Thelia", + "Whmcs", "WolfCMS", "agl", "aimeos", @@ -311,6 +312,7 @@ "installer", "itop", "joomla", + "known", "kohana", "laravel", "lavalite", @@ -340,7 +342,7 @@ "zend", "zikula" ], - "time": "2018-08-27T06:10:37+00:00" + "time": "2019-08-12T15:00:31+00:00" }, { "name": "composer/semver", @@ -406,16 +408,16 @@ }, { "name": "cweagans/composer-patches", - "version": "1.6.6", + "version": "1.6.7", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "1d89dcc730e7f42426c434b88261fcfb3bce651e" + "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/1d89dcc730e7f42426c434b88261fcfb3bce651e", - "reference": "1d89dcc730e7f42426c434b88261fcfb3bce651e", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590", + "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590", "shasum": "" }, "require": { @@ -446,7 +448,7 @@ } ], "description": "Provides a way to patch Composer packages.", - "time": "2018-10-24T15:51:16+00:00" + "time": "2019-08-29T20:11:49+00:00" }, { "name": "defuse/php-encryption", @@ -1044,19 +1046,66 @@ "source": "https://git.drupalcode.org/project/acquia_connector" } }, + { + "name": "drupal/autosave_form", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/autosave_form.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "c94d99f05ae11c1018f540e4a6bb8e54fe0c76b6" + }, + "require": { + "drupal/core": "^8.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0", + "datestamp": "1554999781", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "hchonov", + "homepage": "https://www.drupal.org/user/2901211" + } + ], + "description": "Adds autosave feature on forms.", + "homepage": "https://www.drupal.org/project/autosave_form", + "support": { + "source": "https://git.drupalcode.org/project/autosave_form" + } + }, { "name": "drupal/bg_image_formatter", - "version": "1.10.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bg_image_formatter.git", - "reference": "8.x-1.10" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bg_image_formatter-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "7c1f5c14df7cf9697f2d2d108f4a38f7162cf68b" + "url": "https://ftp.drupal.org/files/projects/bg_image_formatter-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "e58edfd4ae7b1b238e330b6407d012a766ce0dc6" }, "require": { "drupal/core": "~8.0" @@ -1070,8 +1119,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.10", - "datestamp": "1561974785", + "version": "8.x-1.11", + "datestamp": "1564773186", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1176,17 +1225,17 @@ }, { "name": "drupal/claro", - "version": "1.0.0-alpha3", + "version": "1.0.0-alpha5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/claro.git", - "reference": "8.x-1.0-alpha3" + "reference": "8.x-1.0-alpha5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/claro-8.x-1.0-alpha3.zip", - "reference": "8.x-1.0-alpha3", - "shasum": "9084956f96526c91afd039b46563e0f17bdf105f" + "url": "https://ftp.drupal.org/files/projects/claro-8.x-1.0-alpha5.zip", + "reference": "8.x-1.0-alpha5", + "shasum": "32ac74df71df9d095d3d911a19a45788ccf701ba" }, "require": { "drupal/core": "~8.0" @@ -1197,8 +1246,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha3", - "datestamp": "1561542492", + "version": "8.x-1.0-alpha5", + "datestamp": "1567786984", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -1239,6 +1288,77 @@ "issues": "https://www.drupal.org/project/issues/claro" } }, + { + "name": "drupal/conflict", + "version": "2.0.0-alpha1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/conflict.git", + "reference": "8.x-2.0-alpha1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/conflict-8.x-2.0-alpha1.zip", + "reference": "8.x-2.0-alpha1", + "shasum": "466be255262b0c9450998839856f5515cfe8db62" + }, + "require": { + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.0-alpha1", + "datestamp": "1545233580", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "bdragon", + "homepage": "https://www.drupal.org/user/53081" + }, + { + "name": "dixon_", + "homepage": "https://www.drupal.org/user/239911" + }, + { + "name": "drumm", + "homepage": "https://www.drupal.org/user/3064" + }, + { + "name": "dww", + "homepage": "https://www.drupal.org/user/46549" + }, + { + "name": "hchonov", + "homepage": "https://www.drupal.org/user/2901211" + }, + { + "name": "jeqq", + "homepage": "https://www.drupal.org/user/1427908" + } + ], + "description": "Find merge conflicts in entities, perform auto merge where possible or offer a way for resolving them.", + "homepage": "https://www.drupal.org/project/conflict", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupal.org/project/conflict.git", + "issues": "https://www.drupal.org/project/issues/conflict" + } + }, { "name": "drupal/consumers", "version": "1.9.0", @@ -1268,6 +1388,9 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "3052959 - Update 8103 does not work with Drupal 8.7": "https://www.drupal.org/files/issues/2019-05-17/3052959-12.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -1352,16 +1475,16 @@ }, { "name": "drupal/core", - "version": "8.7.5", + "version": "8.7.7", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "12cea52c782bb76e666c54c2a65cd3946daa3613" + "reference": "32e1d7a67bbc28f07dc43d9ff692c0e90a4aeb92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/12cea52c782bb76e666c54c2a65cd3946daa3613", - "reference": "12cea52c782bb76e666c54c2a65cd3946daa3613", + "url": "https://api.github.com/repos/drupal/core/zipball/32e1d7a67bbc28f07dc43d9ff692c0e90a4aeb92", + "reference": "32e1d7a67bbc28f07dc43d9ff692c0e90a4aeb92", "shasum": "" }, "require": { @@ -1411,7 +1534,8 @@ "zendframework/zend-feed": "^2.4" }, "conflict": { - "drush/drush": "<8.1.10" + "drush/drush": "<8.1.10", + "symfony/dom-crawler": ">=4" }, "replace": { "drupal/action": "self.version", @@ -1569,6 +1693,13 @@ "recurse": false, "replace": false, "merge-extra": false + }, + "patches_applied": { + "2869592 - Disabled update module shouldn't produce a status report warning": "https://www.drupal.org/files/issues/2869592-remove-update-warning-7.patch", + "2885441 - EntityReferenceAutocompleteWidget should define its size setting as an integer": "https://www.drupal.org/files/issues/2885441-2.patch", + "2815221 - Add quickedit to the latest-revision route": "https://www.drupal.org/files/issues/2019-03-05/2815221-116.patch", + "1356276 - Allow profiles to define a base/parent profile and load them in the correct order": "https://www.drupal.org/files/issues/2018-10-12/1356276-531.patch", + "2914389 - Allow profiles to exclude dependencies of their parent": "https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch" } }, "autoload": { @@ -1592,7 +1723,7 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2019-07-16T16:24:57+00:00" + "time": "2019-09-04T10:26:35+00:00" }, { "name": "drupal/crop", @@ -2152,6 +2283,10 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "2865928 - The View widget should filter based on field settings": "https://www.drupal.org/files/issues/entity-browser-view-context-2865928-14.patch", + "2877751 - Inform users how many items they can add to a field that uses an entity browser": "https://www.drupal.org/files/issues/2877751-27-8.x-2.x.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -2487,17 +2622,17 @@ }, { "name": "drupal/layout_builder_restrictions", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/layout_builder_restrictions.git", - "reference": "8.x-2.1" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_restrictions-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "1d15acaf6ae2da688087576c716cb2c7e9719abc" + "url": "https://ftp.drupal.org/files/projects/layout_builder_restrictions-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "7ea6c332b83c7c166a1632938783a68b5bf5440a" }, "require": { "drupal/core": "^8.5.0-rc1" @@ -2511,8 +2646,8 @@ "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.1", - "datestamp": "1560794285", + "version": "8.x-2.2", + "datestamp": "1564441086", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2690,6 +2825,9 @@ "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "2882709 - Misnamed interface causes \"Fatal error: Cannot declare interface Drupal\\libraries\\ExternalLibrary\\Utility\\LibraryAccessorIdInterface\"": "https://www.drupal.org/files/issues/2882709-2-interface-libraryidaccessorinterface-misnamed.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -3300,33 +3438,39 @@ }, { "name": "drupal/lightning_workflow", - "version": "3.8.0", + "version": "3.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/lightning_workflow.git", - "reference": "8.x-3.8" + "reference": "8.x-3.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/lightning_workflow-8.x-3.8.zip", - "reference": "8.x-3.8", - "shasum": "870c453615034d3900980c750db3e648e541f024" + "url": "https://ftp.drupal.org/files/projects/lightning_workflow-8.x-3.9.zip", + "reference": "8.x-3.9", + "shasum": "5e6f1c0c1bfff98e9418c52f7b85ca611b02d91d" }, "require": { "cweagans/composer-patches": "^1.6.4", "drupal-composer/drupal-scaffold": "^2.0.0", + "drupal/autosave_form": "^1.0", + "drupal/conflict": "2.0-alpha1", "drupal/core": "*", "drupal/diff": "^1.0", "drupal/lightning_core": "^3.11 || ^4.1 || 3.x-dev || 4.x-dev", "drupal/moderation_dashboard": "^1.0", - "drupal/moderation_sidebar": "^1.0", + "drupal/moderation_sidebar": "^1.2", "oomphinc/composer-installers-extender": "^1.1" }, "require-dev": { + "drupal/drupal-extension": "^3.4", "drupal/inline_entity_form": "^1.0", "drupal/lightning_core": "*", "drupal/schema_metatag": "^1.3", - "webmozart/assert": "^1.3" + "drush/drush": "^9.7", + "webflo/drupal-core-require-dev": "*", + "webmozart/assert": "^1.3", + "weitzman/drupal-test-traits": "^1.2" }, "type": "drupal-module", "extra": { @@ -3335,8 +3479,8 @@ "dev-8.x-3.x": "3.x-dev" }, "drupal": { - "version": "8.x-3.8", - "datestamp": "1562692984", + "version": "8.x-3.9", + "datestamp": "1568049785", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3388,13 +3532,6 @@ "drupal-scaffold": [ "DrupalComposer\\DrupalScaffold\\Plugin::scaffold" ], - "install-drupal": [ - "rm -r -f ./docroot/sites/default/settings.php", - "drush site:install minimal --yes --config ./drush.yml", - "chmod +w ./docroot/sites/default ./docroot/sites/default/settings.php", - "drush pm:enable lightning_workflow lightning_scheduler --yes", - "cp -f phpunit.xml ./docroot/core" - ], "nuke": [ "rm -r -f docroot vendor" ], @@ -3553,24 +3690,24 @@ }, { "name": "drupal/metatag", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.9" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "230960752c5afa17337fb69bae853bccb1a26ecd" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc" }, "require": { "drupal/core": "*", "drupal/token": "^1.0" }, "require-dev": { - "drupal/devel": "^1.0", + "drupal/devel": "^2.0", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", "drupal/page_manager": "^4.0", @@ -3585,8 +3722,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.9", - "datestamp": "1563995941", + "version": "8.x-1.10", + "datestamp": "1567099985", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4031,6 +4168,9 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "2778565 - Multilingual support for Panelizer": "https://www.drupal.org/files/issues/2018-08-13/panelizer-multilingual-2778565-38.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -4112,6 +4252,10 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "3030976 - Panels should check if there is an icon map before setting the no preview icon": "https://www.drupal.org/files/issues/2019-02-06/initial.patch", + "2878684 - Use String.match to correlate regions when switching Layouts in Panels IPE": "https://www.drupal.org/files/issues/panels-ipe-2878684-3.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -5135,16 +5279,16 @@ }, { "name": "egulias/email-validator", - "version": "2.1.10", + "version": "2.1.11", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec" + "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec", - "reference": "a6c8d7101b19a451c1707b1b79bbbc56e4bdb7ec", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23", + "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23", "shasum": "" }, "require": { @@ -5163,7 +5307,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "2.1.x-dev" } }, "autoload": { @@ -5189,7 +5333,7 @@ "validation", "validator" ], - "time": "2019-07-19T20:52:08+00:00" + "time": "2019-08-13T17:33:27+00:00" }, { "name": "ezyang/htmlpurifier", @@ -6553,16 +6697,16 @@ }, { "name": "swagger-api/swagger-ui", - "version": "v3.23.1", + "version": "v3.23.8", "source": { "type": "git", "url": "https://github.com/swagger-api/swagger-ui.git", - "reference": "60397d6f43a7f866f761e3ff39a26b58e91082e0" + "reference": "7cae0d2bdf079fe2f5514f58920eb9e3c1260d14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swagger-api/swagger-ui/zipball/60397d6f43a7f866f761e3ff39a26b58e91082e0", - "reference": "60397d6f43a7f866f761e3ff39a26b58e91082e0", + "url": "https://api.github.com/repos/swagger-api/swagger-ui/zipball/7cae0d2bdf079fe2f5514f58920eb9e3c1260d14", + "reference": "7cae0d2bdf079fe2f5514f58920eb9e3c1260d14", "shasum": "" }, "type": "library", @@ -6606,7 +6750,7 @@ "swagger", "ui" ], - "time": "2019-07-13T06:20:17+00:00" + "time": "2019-09-02T17:13:49+00:00" }, { "name": "symfony-cmf/routing", @@ -6669,16 +6813,16 @@ }, { "name": "symfony/class-loader", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", - "reference": "4459eef5298dedfb69f771186a580062b8516497" + "reference": "e212b06996819a2bce026a63da03b7182d05a690" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497", - "reference": "4459eef5298dedfb69f771186a580062b8516497", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690", + "reference": "e212b06996819a2bce026a63da03b7182d05a690", "shasum": "" }, "require": { @@ -6721,20 +6865,20 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", - "time": "2019-01-16T09:39:14+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "symfony/console", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "c4d2f3529755ffc0be9fb823583b28d8744eeb3d" + "reference": "4510f04e70344d70952566e4262a0b11df39cb10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/c4d2f3529755ffc0be9fb823583b28d8744eeb3d", - "reference": "c4d2f3529755ffc0be9fb823583b28d8744eeb3d", + "url": "https://api.github.com/repos/symfony/console/zipball/4510f04e70344d70952566e4262a0b11df39cb10", + "reference": "4510f04e70344d70952566e4262a0b11df39cb10", "shasum": "" }, "require": { @@ -6793,20 +6937,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-06-05T11:33:52+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/debug", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "1172dc1abe44dfadd162239153818b074e6e53bf" + "reference": "0b600300918780001e2821db77bc28b677794486" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/1172dc1abe44dfadd162239153818b074e6e53bf", - "reference": "1172dc1abe44dfadd162239153818b074e6e53bf", + "url": "https://api.github.com/repos/symfony/debug/zipball/0b600300918780001e2821db77bc28b677794486", + "reference": "0b600300918780001e2821db77bc28b677794486", "shasum": "" }, "require": { @@ -6849,20 +6993,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-06-18T21:26:03+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "symfony/dependency-injection", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "76857ce235ba1866b66a1d5be34c6794c8895435" + "reference": "2709bc2978ceb90f5180181f777f8a09125f2d89" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/76857ce235ba1866b66a1d5be34c6794c8895435", - "reference": "76857ce235ba1866b66a1d5be34c6794c8895435", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2709bc2978ceb90f5180181f777f8a09125f2d89", + "reference": "2709bc2978ceb90f5180181f777f8a09125f2d89", "shasum": "" }, "require": { @@ -6920,20 +7064,20 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "time": "2019-08-26T16:07:57+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "f18fdd6cc7006441865e698420cee26bac94741f" + "reference": "3e922c4c3430b9de624e8a285dada5e61e230959" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f18fdd6cc7006441865e698420cee26bac94741f", - "reference": "f18fdd6cc7006441865e698420cee26bac94741f", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3e922c4c3430b9de624e8a285dada5e61e230959", + "reference": "3e922c4c3430b9de624e8a285dada5e61e230959", "shasum": "" }, "require": { @@ -6983,20 +7127,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-06-25T07:45:31+00:00" + "time": "2019-08-23T08:05:57+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "8cfbf75bb3a72963b12c513a73e9247891df24f8" + "reference": "b3d57a1c325f39f703b249bed7998ce8c64236b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8cfbf75bb3a72963b12c513a73e9247891df24f8", - "reference": "8cfbf75bb3a72963b12c513a73e9247891df24f8", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b3d57a1c325f39f703b249bed7998ce8c64236b4", + "reference": "b3d57a1c325f39f703b249bed7998ce8c64236b4", "shasum": "" }, "require": { @@ -7037,20 +7181,20 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2019-06-22T20:10:25+00:00" + "time": "2019-08-26T07:50:50+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "abbb38dbab652ddc40a86d0c3b0e14ca52d58ed2" + "reference": "f6d35bb306b26812df007525f5757a8b0e95857e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/abbb38dbab652ddc40a86d0c3b0e14ca52d58ed2", - "reference": "abbb38dbab652ddc40a86d0c3b0e14ca52d58ed2", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6d35bb306b26812df007525f5757a8b0e95857e", + "reference": "f6d35bb306b26812df007525f5757a8b0e95857e", "shasum": "" }, "require": { @@ -7126,20 +7270,20 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2019-06-26T13:56:39+00:00" + "time": "2019-08-26T16:36:29+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "82ebae02209c21113908c229e9883c419720738a" + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a", - "reference": "82ebae02209c21113908c229e9883c419720738a", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", "shasum": "" }, "require": { @@ -7151,7 +7295,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -7167,13 +7311,13 @@ "MIT" ], "authors": [ - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - }, { "name": "Gert de Pagter", "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], "description": "Symfony polyfill for ctype functions", @@ -7184,20 +7328,20 @@ "polyfill", "portable" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7" + "reference": "685968b11e61a347c18bf25db32effa478be610f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7", - "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f", + "reference": "685968b11e61a347c18bf25db32effa478be610f", "shasum": "" }, "require": { @@ -7209,7 +7353,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -7243,20 +7387,20 @@ "portable", "shim" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609" + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", "shasum": "" }, "require": { @@ -7268,7 +7412,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -7302,20 +7446,20 @@ "portable", "shim" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-php70", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "bc4858fb611bda58719124ca079baff854149c89" + "reference": "54b4c428a0054e254223797d2713c31e08610831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89", - "reference": "bc4858fb611bda58719124ca079baff854149c89", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831", + "reference": "54b4c428a0054e254223797d2713c31e08610831", "shasum": "" }, "require": { @@ -7325,7 +7469,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -7361,20 +7505,20 @@ "portable", "shim" ], - "time": "2019-02-06T07:57:58+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/process", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "d129c017e8602507688ef2c3007951a16c1a8407" + "reference": "d822cb654000a95b7855362c0d5b127f6a6d8baa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/d129c017e8602507688ef2c3007951a16c1a8407", - "reference": "d129c017e8602507688ef2c3007951a16c1a8407", + "url": "https://api.github.com/repos/symfony/process/zipball/d822cb654000a95b7855362c0d5b127f6a6d8baa", + "reference": "d822cb654000a95b7855362c0d5b127f6a6d8baa", "shasum": "" }, "require": { @@ -7410,7 +7554,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -7477,16 +7621,16 @@ }, { "name": "symfony/routing", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "8d804d8a65a26dc9de1aaf2ff3a421e581d050e6" + "reference": "8b0faa681c4ee14701e76a7056fef15ac5384163" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/8d804d8a65a26dc9de1aaf2ff3a421e581d050e6", - "reference": "8d804d8a65a26dc9de1aaf2ff3a421e581d050e6", + "url": "https://api.github.com/repos/symfony/routing/zipball/8b0faa681c4ee14701e76a7056fef15ac5384163", + "reference": "8b0faa681c4ee14701e76a7056fef15ac5384163", "shasum": "" }, "require": { @@ -7549,20 +7693,20 @@ "uri", "url" ], - "time": "2019-06-26T11:14:13+00:00" + "time": "2019-08-26T07:50:50+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "c060c0e0b97dc13b3c3fd8f981a68fa32a24371c" + "reference": "758c3cb8cd4a949ee76ee457450abdc80ea82aa1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/c060c0e0b97dc13b3c3fd8f981a68fa32a24371c", - "reference": "c060c0e0b97dc13b3c3fd8f981a68fa32a24371c", + "url": "https://api.github.com/repos/symfony/serializer/zipball/758c3cb8cd4a949ee76ee457450abdc80ea82aa1", + "reference": "758c3cb8cd4a949ee76ee457450abdc80ea82aa1", "shasum": "" }, "require": { @@ -7628,20 +7772,20 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "time": "2019-06-14T05:50:06+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/translation", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "5c07632afb8cb14b422051b651213ed17bf7c249" + "reference": "49a884e9ac297f99c56052bad30b2af89f716ee1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/5c07632afb8cb14b422051b651213ed17bf7c249", - "reference": "5c07632afb8cb14b422051b651213ed17bf7c249", + "url": "https://api.github.com/repos/symfony/translation/zipball/49a884e9ac297f99c56052bad30b2af89f716ee1", + "reference": "49a884e9ac297f99c56052bad30b2af89f716ee1", "shasum": "" }, "require": { @@ -7698,20 +7842,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2019-06-13T10:34:15+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/validator", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "d6561bff343346be8ff3e93eb5c4344985bc538b" + "reference": "4dde4e74331ffa897c31e4423d02ae08d56f7784" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/d6561bff343346be8ff3e93eb5c4344985bc538b", - "reference": "d6561bff343346be8ff3e93eb5c4344985bc538b", + "url": "https://api.github.com/repos/symfony/validator/zipball/4dde4e74331ffa897c31e4423d02ae08d56f7784", + "reference": "4dde4e74331ffa897c31e4423d02ae08d56f7784", "shasum": "" }, "require": { @@ -7721,15 +7865,16 @@ "symfony/translation": "~2.8|~3.0|~4.0" }, "conflict": { + "doctrine/lexer": "<1.0.2", "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", "symfony/dependency-injection": "<3.3", "symfony/http-kernel": "<3.3.5", "symfony/yaml": "<3.4" }, "require-dev": { - "doctrine/annotations": "~1.0", + "doctrine/annotations": "~1.7", "doctrine/cache": "~1.0", - "egulias/email-validator": "^1.2.8|~2.0", + "egulias/email-validator": "^2.1.10", "symfony/cache": "~3.1|~4.0", "symfony/config": "~2.8|~3.0|~4.0", "symfony/dependency-injection": "~3.3|~4.0", @@ -7783,20 +7928,20 @@ ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", - "time": "2019-06-20T06:43:29+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996" + "reference": "3dc414b7db30695bae671a1d86013d03f4ae9834" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/212a27b731e5bfb735679d1ffaac82bd6a1dc996", - "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996", + "url": "https://api.github.com/repos/symfony/yaml/zipball/3dc414b7db30695bae671a1d86013d03f4ae9834", + "reference": "3dc414b7db30695bae671a1d86013d03f4ae9834", "shasum": "" }, "require": { @@ -7842,30 +7987,30 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-03-25T07:48:46+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "twig/twig", - "version": "v1.42.2", + "version": "v1.42.3", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "21707d6ebd05476854805e4f91b836531941bcd4" + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/21707d6ebd05476854805e4f91b836531941bcd4", - "reference": "21707d6ebd05476854805e4f91b836531941bcd4", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e", + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e", "shasum": "" }, "require": { - "php": ">=5.4.0", + "php": ">=5.5.0", "symfony/polyfill-ctype": "^1.8" }, "require-dev": { "psr/container": "^1.0", - "symfony/debug": "^2.7", - "symfony/phpunit-bridge": "^3.4.19|^4.1.8|^5.0" + "symfony/debug": "^3.4|^4.2", + "symfony/phpunit-bridge": "^4.4@dev|^5.0" }, "type": "library", "extra": { @@ -7892,15 +8037,15 @@ "homepage": "http://fabien.potencier.org", "role": "Lead Developer" }, - { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" - }, { "name": "Twig Team", "homepage": "https://twig.symfony.com/contributors", "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" } ], "description": "Twig, the flexible, fast, and secure template language for PHP", @@ -7908,7 +8053,7 @@ "keywords": [ "templating" ], - "time": "2019-06-18T15:35:16+00:00" + "time": "2019-08-24T12:51:03+00:00" }, { "name": "typo3/phar-stream-wrapper", @@ -7977,16 +8122,16 @@ }, { "name": "webmozart/assert", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9" + "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9", - "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9", + "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4", + "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4", "shasum": "" }, "require": { @@ -7994,8 +8139,7 @@ "symfony/polyfill-ctype": "^1.8" }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpunit/phpunit": "^4.8.36 || ^7.5.13" }, "type": "library", "extra": { @@ -8024,20 +8168,20 @@ "check", "validate" ], - "time": "2018-12-25T11:19:39+00:00" + "time": "2019-08-24T08:43:50+00:00" }, { "name": "zendframework/zend-diactoros", - "version": "1.8.6", + "version": "1.8.7", "source": { "type": "git", "url": "https://github.com/zendframework/zend-diactoros.git", - "reference": "20da13beba0dde8fb648be3cc19765732790f46e" + "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e", - "reference": "20da13beba0dde8fb648be3cc19765732790f46e", + "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b", + "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b", "shasum": "" }, "require": { @@ -8057,9 +8201,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8.x-dev", - "dev-develop": "1.9.x-dev", - "dev-release-2.0": "2.0.x-dev" + "dev-release-1.8": "1.8.x-dev" } }, "autoload": { @@ -8088,20 +8230,20 @@ "psr", "psr-7" ], - "time": "2018-09-05T19:29:37+00:00" + "time": "2019-08-06T17:53:53+00:00" }, { "name": "zendframework/zend-escaper", - "version": "2.6.0", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/zendframework/zend-escaper.git", - "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074" + "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074", - "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074", + "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f", + "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f", "shasum": "" }, "require": { @@ -8133,7 +8275,7 @@ "escaper", "zf" ], - "time": "2018-04-25T15:48:53+00:00" + "time": "2019-09-05T20:03:20+00:00" }, { "name": "zendframework/zend-feed", @@ -8614,22 +8756,22 @@ }, { "name": "behat/mink-selenium2-driver", - "version": "dev-master", + "version": "1.3.x-dev", "source": { "type": "git", "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a" + "reference": "0a09c4341621fca937a726827611b20ce3e2c259" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a", - "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/0a09c4341621fca937a726827611b20ce3e2c259", + "reference": "0a09c4341621fca937a726827611b20ce3e2c259", "shasum": "" }, "require": { "behat/mink": "~1.7@dev", "instaclick/php-webdriver": "~1.1", - "php": ">=5.3.1" + "php": ">=5.4" }, "require-dev": { "mink/driver-testsuite": "dev-master" @@ -8650,15 +8792,15 @@ "MIT" ], "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - }, { "name": "Pete Otaqui", "email": "pete@otaqui.com", "homepage": "https://github.com/pete-otaqui" + }, + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], "description": "Selenium2 (WebDriver) driver for Mink framework", @@ -8671,7 +8813,7 @@ "testing", "webdriver" ], - "time": "2018-10-10T12:39:06+00:00" + "time": "2019-09-02T09:46:54+00:00" }, { "name": "behat/transliterator", @@ -8719,16 +8861,16 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "1.30.3", + "version": "1.30.4", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "1da9f06843b6bf2b0e7d28fea4b6c1d79aead197" + "reference": "8b7ae331e21e58088e3e52688823692ed6471ec3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/1da9f06843b6bf2b0e7d28fea4b6c1d79aead197", - "reference": "1da9f06843b6bf2b0e7d28fea4b6c1d79aead197", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8b7ae331e21e58088e3e52688823692ed6471ec3", + "reference": "8b7ae331e21e58088e3e52688823692ed6471ec3", "shasum": "" }, "require": { @@ -8760,7 +8902,7 @@ "GPL-2.0-or-later" ], "description": "Drupal code generator", - "time": "2019-06-29T10:29:45+00:00" + "time": "2019-08-25T06:39:56+00:00" }, { "name": "consolidation/annotated-command", @@ -9199,16 +9341,16 @@ }, { "name": "consolidation/robo", - "version": "1.4.9", + "version": "1.4.10", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345" + "reference": "e5a6ca64cf1324151873672e484aceb21f365681" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345", - "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/e5a6ca64cf1324151873672e484aceb21f365681", + "reference": "e5a6ca64cf1324151873672e484aceb21f365681", "shasum": "" }, "require": { @@ -9303,7 +9445,7 @@ } ], "description": "Modern task runner", - "time": "2019-03-19T18:07:19+00:00" + "time": "2019-07-29T15:40:50+00:00" }, { "name": "consolidation/self-update", @@ -9429,16 +9571,16 @@ }, { "name": "consolidation/site-process", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "e25265f4a48c13284ebb6f9e0906ecd415d451df" + "reference": "e159f849abce696c2f5081c149a1f8ec8717dd97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/e25265f4a48c13284ebb6f9e0906ecd415d451df", - "reference": "e25265f4a48c13284ebb6f9e0906ecd415d451df", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/e159f849abce696c2f5081c149a1f8ec8717dd97", + "reference": "e159f849abce696c2f5081c149a1f8ec8717dd97", "shasum": "" }, "require": { @@ -9487,17 +9629,17 @@ "MIT" ], "authors": [ - { - "name": "Moshe Weitzman", - "email": "weitzman@tejasa.com" - }, { "name": "Greg Anderson", "email": "greg.1.anderson@greenknowe.org" + }, + { + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" } ], "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", - "time": "2019-06-04T22:23:52+00:00" + "time": "2019-08-12T23:10:26+00:00" }, { "name": "container-interop/container-interop", @@ -9678,11 +9820,11 @@ }, { "name": "drupal/coder", - "version": "8.3.5", + "version": "8.3.6", "source": { "type": "git", - "url": "https://git.drupal.org/project/coder.git", - "reference": "35277fc8675b6a2cbb194f8880145a9c85c845c4" + "url": "https://git.drupalcode.org/project/coder.git", + "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820" }, "require": { "ext-mbstring": "*", @@ -9711,7 +9853,7 @@ "phpcs", "standards" ], - "time": "2019-06-14T15:06:06+00:00" + "time": "2019-08-09T09:27:26+00:00" }, { "name": "drupal/drupal-driver", @@ -9957,7 +10099,8 @@ "homepage": "https://www.drupal.org/project/media_entity_generic", "support": { "source": "https://git.drupalcode.org/project/media_entity_generic" - } + }, + "time": "2017-10-18T07:13:43+00:00" }, { "name": "drupal/schema_metatag", @@ -10710,23 +10853,23 @@ }, { "name": "mikey179/vfsstream", - "version": "v1.6.6", + "version": "v1.6.7", "source": { "type": "git", "url": "https://github.com/bovigo/vfsStream.git", - "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d" + "reference": "2b544ac3a21bcc4dde5d90c4ae8d06f4319055fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/095238a0711c974ae5b4ebf4c4534a23f3f6c99d", - "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d", + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/2b544ac3a21bcc4dde5d90c4ae8d06f4319055fb", + "reference": "2b544ac3a21bcc4dde5d90c4ae8d06f4319055fb", "shasum": "" }, "require": { "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "~4.5" + "phpunit/phpunit": "^4.5|^5.0" }, "type": "library", "extra": { @@ -10746,13 +10889,13 @@ "authors": [ { "name": "Frank Kleine", - "homepage": "http://frankkleine.de/", - "role": "Developer" + "role": "Developer", + "homepage": "http://frankkleine.de/" } ], "description": "Virtual file system to mock the real file system in unit tests.", "homepage": "http://vfs.bovigo.org/", - "time": "2019-04-08T13:54:32+00:00" + "time": "2019-08-01T01:38:37+00:00" }, { "name": "myclabs/deep-copy", @@ -10801,16 +10944,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.2.2", + "version": "v4.2.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420" + "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bd73cc04c3843ad8d6b0bfc0956026a151fc420", - "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4", + "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4", "shasum": "" }, "require": { @@ -10818,7 +10961,7 @@ "php": ">=7.0" }, "require-dev": { - "phpunit/phpunit": "^6.5 || ^7.0" + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, "bin": [ "bin/php-parse" @@ -10848,7 +10991,7 @@ "parser", "php" ], - "time": "2019-05-25T20:07:01+00:00" + "time": "2019-09-01T07:51:21+00:00" }, { "name": "phar-io/manifest", @@ -11695,16 +11838,16 @@ }, { "name": "sebastian/exporter", - "version": "3.1.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" + "reference": "06a9a5947f47b3029d76118eb5c22802e5869687" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", - "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/06a9a5947f47b3029d76118eb5c22802e5869687", + "reference": "06a9a5947f47b3029d76118eb5c22802e5869687", "shasum": "" }, "require": { @@ -11731,6 +11874,10 @@ "BSD-3-Clause" ], "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, { "name": "Jeff Welch", "email": "whatthejeff@gmail.com" @@ -11739,17 +11886,13 @@ "name": "Volker Dusch", "email": "github@wallbash.com" }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, { "name": "Adam Harvey", "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], "description": "Provides the functionality to export PHP variables for visualization", @@ -11758,7 +11901,7 @@ "export", "exporter" ], - "time": "2017-04-03T13:19:02+00:00" + "time": "2019-08-11T12:43:14+00:00" }, { "name": "sebastian/global-state", @@ -12094,16 +12237,16 @@ }, { "name": "symfony/browser-kit", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282" + "reference": "1a3406a6b9b61b492592a816ca056afcc9e976c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/53266c9a1536e2dc673eb1efb6a6142ef84c6282", - "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/1a3406a6b9b61b492592a816ca056afcc9e976c0", + "reference": "1a3406a6b9b61b492592a816ca056afcc9e976c0", "shasum": "" }, "require": { @@ -12147,20 +12290,20 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2019-06-09T14:27:26+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/config", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "29a33f66194fbe2ed4555981810f15fd8440e4a8" + "reference": "24a60c0d7ad98a0fa5d1f892e9286095a389404f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/29a33f66194fbe2ed4555981810f15fd8440e4a8", - "reference": "29a33f66194fbe2ed4555981810f15fd8440e4a8", + "url": "https://api.github.com/repos/symfony/config/zipball/24a60c0d7ad98a0fa5d1f892e9286095a389404f", + "reference": "24a60c0d7ad98a0fa5d1f892e9286095a389404f", "shasum": "" }, "require": { @@ -12211,20 +12354,20 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "time": "2019-08-26T07:52:57+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf" + "reference": "e18c5c4b35e7f17513448a25d02f7af34a4bdb41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", - "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/e18c5c4b35e7f17513448a25d02f7af34a4bdb41", + "reference": "e18c5c4b35e7f17513448a25d02f7af34a4bdb41", "shasum": "" }, "require": { @@ -12249,14 +12392,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" @@ -12264,20 +12407,20 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2019-01-16T09:39:14+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "symfony/dom-crawler", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c" + "reference": "8558d1bc4554f5cb0b66e50377457967a8969263" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/adb96e63af6fb0cc721cc69861001d60d0133d0c", - "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8558d1bc4554f5cb0b66e50377457967a8969263", + "reference": "8558d1bc4554f5cb0b66e50377457967a8969263", "shasum": "" }, "require": { @@ -12321,20 +12464,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "70adda061ef83bb7def63a17953dc41f203308a7" + "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/70adda061ef83bb7def63a17953dc41f203308a7", - "reference": "70adda061ef83bb7def63a17953dc41f203308a7", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", + "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516", "shasum": "" }, "require": { @@ -12371,20 +12514,20 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2019-06-23T09:29:17+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "symfony/finder", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "5f80266a729e30bbcc37f8bf0e62c3d5a38c8208" + "reference": "1fcad80b440abcd1451767349906b6f9d3961d37" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/5f80266a729e30bbcc37f8bf0e62c3d5a38c8208", - "reference": "5f80266a729e30bbcc37f8bf0e62c3d5a38c8208", + "url": "https://api.github.com/repos/symfony/finder/zipball/1fcad80b440abcd1451767349906b6f9d3961d37", + "reference": "1fcad80b440abcd1451767349906b6f9d3961d37", "shasum": "" }, "require": { @@ -12420,20 +12563,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "time": "2019-08-14T09:39:58+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "521489968e58dcdb8df153436cc18349737e49e3" + "reference": "028617b04ae19d99d89089626ac969d161244ebc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/521489968e58dcdb8df153436cc18349737e49e3", - "reference": "521489968e58dcdb8df153436cc18349737e49e3", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/028617b04ae19d99d89089626ac969d161244ebc", + "reference": "028617b04ae19d99d89089626ac969d161244ebc", "shasum": "" }, "require": { @@ -12485,20 +12628,20 @@ ], "description": "Symfony PHPUnit Bridge", "homepage": "https://symfony.com", - "time": "2019-06-26T10:03:25+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "symfony/var-dumper", - "version": "v3.4.29", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "7b92618169c44af4bb226f69dbac42b56b1a7745" + "reference": "5408ad7194737ee1bc5ab7a9683fb6925f92c3e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7b92618169c44af4bb226f69dbac42b56b1a7745", - "reference": "7b92618169c44af4bb226f69dbac42b56b1a7745", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5408ad7194737ee1bc5ab7a9683fb6925f92c3e4", + "reference": "5408ad7194737ee1bc5ab7a9683fb6925f92c3e4", "shasum": "" }, "require": { @@ -12554,7 +12697,7 @@ "debug", "dump" ], - "time": "2019-06-13T16:26:35+00:00" + "time": "2019-08-26T07:50:50+00:00" }, { "name": "theseer/tokenizer", @@ -12598,16 +12741,16 @@ }, { "name": "webflo/drupal-core-require-dev", - "version": "8.7.5", + "version": "8.7.7", "source": { "type": "git", "url": "https://github.com/webflo/drupal-core-require-dev.git", - "reference": "f2d22767efe8b6444676eafdd51a452088048747" + "reference": "f535c939fee065b202ed5a84b15aa5385ba49d5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/f2d22767efe8b6444676eafdd51a452088048747", - "reference": "f2d22767efe8b6444676eafdd51a452088048747", + "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/f535c939fee065b202ed5a84b15aa5385ba49d5e", + "reference": "f535c939fee065b202ed5a84b15aa5385ba49d5e", "shasum": "" }, "require": { @@ -12615,7 +12758,7 @@ "behat/mink-goutte-driver": "^1.2", "behat/mink-selenium2-driver": "1.3.x-dev", "drupal/coder": "^8.3.1", - "drupal/core": "8.7.5", + "drupal/core": "8.7.7", "jcalderonzumba/gastonjs": "^1.0.2", "jcalderonzumba/mink-phantomjs-driver": "^0.3.1", "justinrainbow/json-schema": "^5.2", @@ -12632,22 +12775,25 @@ "GPL-2.0-or-later" ], "description": "require-dev dependencies from drupal/core", - "time": "2019-07-17T16:31:47+00:00" + "time": "2019-09-04T10:31:38+00:00" }, { "name": "webflo/drupal-finder", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/webflo/drupal-finder.git", - "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637" + "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637", - "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", + "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", "shasum": "" }, + "require": { + "ext-json": "*" + }, "require-dev": { "mikey179/vfsstream": "^1.6", "phpunit/phpunit": "^4.8" @@ -12669,7 +12815,7 @@ } ], "description": "Helper class to locate a Drupal installation from a given path.", - "time": "2017-10-24T08:12:11+00:00" + "time": "2019-08-02T08:06:18+00:00" }, { "name": "webmozart/path-util", diff --git a/drupal-org-core.make b/drupal-org-core.make index 5f1b84d75..3c701e295 100644 --- a/drupal-org-core.make +++ b/drupal-org-core.make @@ -4,7 +4,7 @@ projects[drupal][type] = core projects[drupal][download][type] = git projects[drupal][download][url] = https://git.drupal.org/project/drupal.git projects[drupal][download][branch] = 8.7.x -projects[drupal][download][tag] = 8.7.5 +projects[drupal][download][tag] = 8.7.7 projects[drupal][patch][] = https://www.drupal.org/files/issues/2869592-remove-update-warning-7.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2885441-2.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2019-03-05/2815221-116.patch diff --git a/drupal-org.make b/drupal-org.make index 10a4f46e5..0621fe820 100644 --- a/drupal-org.make +++ b/drupal-org.make @@ -3,12 +3,16 @@ api = 2 defaults[projects][subdir] = contrib projects[acquia_connector][type] = module projects[acquia_connector][version] = 1.16 +projects[autosave_form][type] = module +projects[autosave_form][version] = 1.0 projects[bg_image_formatter][type] = module -projects[bg_image_formatter][version] = 1.10 +projects[bg_image_formatter][version] = 1.11 projects[blazy][type] = module projects[blazy][version] = 1.0-rc4 projects[claro][type] = theme -projects[claro][version] = 1.0-alpha3 +projects[claro][version] = 1.0-alpha5 +projects[conflict][type] = module +projects[conflict][version] = 2.0-alpha1 projects[consumers][type] = module projects[consumers][patch][] = https://www.drupal.org/files/issues/2019-05-17/3052959-12.patch projects[consumers][version] = 1.9 @@ -39,7 +43,7 @@ projects[image_widget_crop][version] = 2.2 projects[inline_entity_form][type] = module projects[inline_entity_form][version] = 1.0-rc1 projects[layout_builder_restrictions][type] = module -projects[layout_builder_restrictions][version] = 2.1 +projects[layout_builder_restrictions][version] = 2.2 projects[layout_builder_st][type] = module projects[layout_builder_st][version] = 1.0-alpha1 projects[layout_library][type] = module @@ -56,13 +60,13 @@ projects[lightning_layout][version] = 2.1 projects[lightning_media][type] = module projects[lightning_media][version] = 3.12 projects[lightning_workflow][type] = module -projects[lightning_workflow][version] = 3.8 +projects[lightning_workflow][version] = 3.9 projects[media_entity_instagram][type] = module projects[media_entity_instagram][version] = 2.0-alpha2 projects[media_entity_twitter][type] = module projects[media_entity_twitter][version] = 2.0-alpha3 projects[metatag][type] = module -projects[metatag][version] = 1.9 +projects[metatag][version] = 1.10 projects[moderation_dashboard][type] = module projects[moderation_dashboard][version] = 1.0-beta1 projects[moderation_sidebar][type] = module From f2f980badfbec27e9a12ed35e5c0f2fa4399e4cc Mon Sep 17 00:00:00 2001 From: kdruckman Date: Mon, 23 Sep 2019 11:53:58 -0500 Subject: [PATCH 07/17] add redirect module --- src/Update/Update405.php | 11 +++++++++++ tests/src/Kernel/Update405Test.php | 15 +++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/Update/Update405.php b/src/Update/Update405.php index 0782fd474..280214aa9 100644 --- a/src/Update/Update405.php +++ b/src/Update/Update405.php @@ -49,5 +49,16 @@ public static function create(ContainerInterface $container) { public function enableAutosaveForm() { $this->moduleInstaller->install(['autosave_form', 'conflict']); } + + /** + * Enables the Redirect module. + * + * @update + * + * @ask Do you want to enable the Redirect module? + */ + public function enableRedirect() { + $this->moduleInstaller->install(['redirect']); + } } diff --git a/tests/src/Kernel/Update405Test.php b/tests/src/Kernel/Update405Test.php index 312859323..54dab0dce 100644 --- a/tests/src/Kernel/Update405Test.php +++ b/tests/src/Kernel/Update405Test.php @@ -30,5 +30,20 @@ public function testEnableAutosaveForm() { $this->assertTrue($moduleHandler->moduleExists('autosave_form')); $this->assertTrue($moduleHandler->moduleExists('conflict')); } + /** + * @covers ::enableRedirect + */ + public function testEnableRedirect() { + + $moduleHandler = $this->container->get('module_handler'); + + $this->assertFalse($moduleHandler->moduleExists('redirect')); + + Update405::create($this->container)->enableRedirect(); + + $moduleHandler = $this->container->get('module_handler'); + + $this->assertTrue($moduleHandler->moduleExists('redirect')); + } } From 68393e3cb703b822761179202cba7d6eebb1b526 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Mon, 23 Sep 2019 14:38:55 -0500 Subject: [PATCH 08/17] update test --- tests/src/Kernel/Update405Test.php | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/tests/src/Kernel/Update405Test.php b/tests/src/Kernel/Update405Test.php index 6e3bc9f2b..11780b1c9 100644 --- a/tests/src/Kernel/Update405Test.php +++ b/tests/src/Kernel/Update405Test.php @@ -19,35 +19,24 @@ class Update405Test extends KernelTestBase { /** * @covers ::enableAutosaveForm + * @covers ::enableRedirect */ - public function testEnableAutosaveForm() { + public function testUpdate() { $moduleHandler = $this->container->get('module_handler'); $this->assertFalse($moduleHandler->moduleExists('autosave_form')); $this->assertFalse($moduleHandler->moduleExists('conflict')); + $this->assertFalse($moduleHandler->moduleExists('redirect')); - Update405::create($this->container)->enableAutosaveForm(); + $update = Update405::create($this->container); + $update->enableAutosaveForm(); + $update->enableRedirect(); $moduleHandler = $this->container->get('module_handler'); $this->assertTrue($moduleHandler->moduleExists('autosave_form')); $this->assertTrue($moduleHandler->moduleExists('conflict')); - } - - /** - * @covers ::enableRedirect - */ - public function testEnableRedirect() { - - $moduleHandler = $this->container->get('module_handler'); - - $this->assertFalse($moduleHandler->moduleExists('redirect')); - - Update405::create($this->container)->enableRedirect(); - - $moduleHandler = $this->container->get('module_handler'); - $this->assertTrue($moduleHandler->moduleExists('redirect')); } From d9dbc246bf61b966bd0fe5a6e8b53b8a89a8afbe Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 27 Sep 2019 16:15:09 -0500 Subject: [PATCH 09/17] update composer.json --- composer.json | 2 +- composer.lock | 93 +++++++++++++++++++++++++++++++++++--------- drupal-org-core.make | 1 - drupal-org.make | 4 +- 4 files changed, 78 insertions(+), 22 deletions(-) diff --git a/composer.json b/composer.json index e7bfb951f..f22369e5b 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "drupal-composer/drupal-scaffold": "^2.0.0", "drupal/claro": "^1.0", "drupal/lightning_api": "^4.1", - "drupal/lightning_core": "^4.5", + "drupal/lightning_core": "^4.7", "drupal/lightning_layout": "^2.1", "drupal/lightning_media": "^3.11", "drupal/lightning_workflow": "^3.9", diff --git a/composer.lock b/composer.lock index dbaaa27ae..7804286f1 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": "301a3160a03af323b455f04004e05507", + "content-hash": "460c899b0fc7ae9f040b6714f56e75c6", "packages": [ { "name": "asm89/stack-cors", @@ -1696,7 +1696,6 @@ }, "patches_applied": { "2869592 - Disabled update module shouldn't produce a status report warning": "https://www.drupal.org/files/issues/2869592-remove-update-warning-7.patch", - "2885441 - EntityReferenceAutocompleteWidget should define its size setting as an integer": "https://www.drupal.org/files/issues/2885441-2.patch", "2815221 - Add quickedit to the latest-revision route": "https://www.drupal.org/files/issues/2019-03-05/2815221-116.patch", "1356276 - Allow profiles to define a base/parent profile and load them in the correct order": "https://www.drupal.org/files/issues/2018-10-12/1356276-531.patch", "2914389 - Allow profiles to exclude dependencies of their parent": "https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch" @@ -2995,17 +2994,17 @@ }, { "name": "drupal/lightning_core", - "version": "4.6.0", + "version": "4.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/lightning_core.git", - "reference": "8.x-4.6" + "reference": "8.x-4.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/lightning_core-8.x-4.6.zip", - "reference": "8.x-4.6", - "shasum": "df476d5188081f004c7f7c6474c4a86a0e3feb1c" + "url": "https://ftp.drupal.org/files/projects/lightning_core-8.x-4.7.zip", + "reference": "8.x-4.7", + "shasum": "1e373ff4381ba162517fd6a8d895dcd1d4f5c92d" }, "require": { "cweagans/composer-patches": "^1.6.4", @@ -3015,6 +3014,7 @@ "drupal/core": "~8.7.5 || 8.7.x-dev", "drupal/metatag": "^1.9", "drupal/pathauto": "^1.3", + "drupal/redirect": "^1.4", "drupal/search_api": "^1.0", "drupal/token": "^1.0", "oomphinc/composer-installers-extender": "^1.1", @@ -3039,8 +3039,8 @@ "dev-8.x-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-4.6", - "datestamp": "1568318589", + "version": "8.x-4.7", + "datestamp": "1569615488", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4437,6 +4437,61 @@ "source": "https://git.drupalcode.org/project/pathauto" } }, + { + "name": "drupal/redirect", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/redirect.git", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c" + }, + "require": { + "drupal/core": "~8" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.4", + "datestamp": "1561757585", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "pifagor", + "homepage": "https://www.drupal.org/user/2375692" + } + ], + "description": "Allows users to redirect from old URLs to new URLs.", + "homepage": "https://www.drupal.org/project/redirect", + "support": { + "source": "https://git.drupalcode.org/project/redirect" + } + }, { "name": "drupal/schemata", "version": "1.0.0-beta1", @@ -10457,16 +10512,16 @@ }, { "name": "instaclick/php-webdriver", - "version": "1.4.5", + "version": "1.4.6", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "6fa959452e774dcaed543faad3a9d1a37d803327" + "reference": "bd9405077ca04129a73059a06873bedb5e138402" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327", - "reference": "6fa959452e774dcaed543faad3a9d1a37d803327", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402", + "reference": "bd9405077ca04129a73059a06873bedb5e138402", "shasum": "" }, "require": { @@ -10512,7 +10567,7 @@ "webdriver", "webtest" ], - "time": "2017-06-30T04:02:48+00:00" + "time": "2019-09-23T15:50:44+00:00" }, { "name": "jakub-onderka/php-console-color", @@ -12183,16 +12238,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.4.2", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8" + "reference": "0afebf16a2e7f1e434920fa976253576151effe9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8", - "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/0afebf16a2e7f1e434920fa976253576151effe9", + "reference": "0afebf16a2e7f1e434920fa976253576151effe9", "shasum": "" }, "require": { @@ -12230,7 +12285,7 @@ "phpcs", "standards" ], - "time": "2019-04-10T23:49:02+00:00" + "time": "2019-09-26T23:12:26+00:00" }, { "name": "symfony/browser-kit", diff --git a/drupal-org-core.make b/drupal-org-core.make index 3c701e295..033f5025c 100644 --- a/drupal-org-core.make +++ b/drupal-org-core.make @@ -6,7 +6,6 @@ projects[drupal][download][url] = https://git.drupal.org/project/drupal.git projects[drupal][download][branch] = 8.7.x projects[drupal][download][tag] = 8.7.7 projects[drupal][patch][] = https://www.drupal.org/files/issues/2869592-remove-update-warning-7.patch -projects[drupal][patch][] = https://www.drupal.org/files/issues/2885441-2.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2019-03-05/2815221-116.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2018-10-12/1356276-531.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch \ No newline at end of file diff --git a/drupal-org.make b/drupal-org.make index deb4c7754..e8206284f 100644 --- a/drupal-org.make +++ b/drupal-org.make @@ -54,7 +54,7 @@ projects[libraries][version] = 3.0-alpha1 projects[lightning_api][type] = module projects[lightning_api][version] = 4.2 projects[lightning_core][type] = module -projects[lightning_core][version] = 4.6 +projects[lightning_core][version] = 4.7 projects[lightning_layout][type] = module projects[lightning_layout][version] = 2.1 projects[lightning_media][type] = module @@ -90,6 +90,8 @@ projects[panels][patch][] = https://www.drupal.org/files/issues/panels-ipe-28786 projects[panels][version] = 4.4 projects[pathauto][type] = module projects[pathauto][version] = 1.4 +projects[redirect][type] = module +projects[redirect][version] = 1.4 projects[schemata][type] = module projects[schemata][version] = 1.0-beta1 projects[search_api][type] = module From 5fbf8bc2cd62ff5312271e2464976fdaa747ba82 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Mon, 30 Sep 2019 10:43:57 -0500 Subject: [PATCH 10/17] add redirect to lightning.info.yml --- lightning.info.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning.info.yml b/lightning.info.yml index 915e48b71..65c51e3ec 100644 --- a/lightning.info.yml +++ b/lightning.info.yml @@ -24,6 +24,7 @@ install: - path - pathauto - page_cache + - redirect - taxonomy - text - dblog From cd249caa6b7bf8123ca1ddf9d658aceec747a739 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Mon, 30 Sep 2019 11:00:24 -0500 Subject: [PATCH 11/17] remove blank line --- tests/src/Kernel/Update405Test.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/src/Kernel/Update405Test.php b/tests/src/Kernel/Update405Test.php index 11780b1c9..c89399390 100644 --- a/tests/src/Kernel/Update405Test.php +++ b/tests/src/Kernel/Update405Test.php @@ -22,7 +22,6 @@ class Update405Test extends KernelTestBase { * @covers ::enableRedirect */ public function testUpdate() { - $moduleHandler = $this->container->get('module_handler'); $this->assertFalse($moduleHandler->moduleExists('autosave_form')); From fee533750260796fdea9c82ed098c5b1e0b6c029 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Thu, 5 Mar 2020 00:24:31 -0600 Subject: [PATCH 12/17] Update lightning.install Alerts users of Libraries API dependencies. --- lightning.install | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/lightning.install b/lightning.install index d5b23f513..d6272c2ca 100644 --- a/lightning.install +++ b/lightning.install @@ -9,6 +9,35 @@ use Drupal\Core\Entity\Entity\EntityViewDisplay; use Drupal\field\Entity\FieldConfig; use Drupal\lightning_core\ConfigHelper as Config; +/** + * Alerts users of Libraries API dependencies. + * + * A future version of Lightning will remove Libraries API, so + * users must add that dependency to composer.json manually. + */ +function lightning_requirements() { + $requirements = []; + $libraries_dependencies = []; + $enabled_modules = \Drupal::moduleHandler()->getModuleList(); + + foreach ($enabled_modules as $module => $data) { + $info = \Drupal::service('extension.list.module')->getExtensionInfo($module); + if (in_array('drupal:libraries', $info['dependencies'])) { + $libraries_dependencies[$module] = $info['name']; + } + } + + if ($enabled_modules) { + $requirements['lightning_libraries'] = [ + 'title' => t('Libraries API'), + 'value' => t('Libraries API dependency: %module_list. These modules require Libraries API. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', ['%module_list' => implode(', ', $libraries_dependencies)]), + 'severity' => REQUIREMENT_WARNING, + ]; + } + return $requirements; + +} + /** * Makes updates to some basic config that ships with Lightning. * From afcd5a94cd54afd30406616fbf63cab7ec4acd72 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Thu, 5 Mar 2020 00:54:21 -0600 Subject: [PATCH 13/17] Update lightning.install --- lightning.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightning.install b/lightning.install index d6272c2ca..f3903f2db 100644 --- a/lightning.install +++ b/lightning.install @@ -29,8 +29,8 @@ function lightning_requirements() { if ($enabled_modules) { $requirements['lightning_libraries'] = [ - 'title' => t('Libraries API'), - 'value' => t('Libraries API dependency: %module_list. These modules require Libraries API. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', ['%module_list' => implode(', ', $libraries_dependencies)]), + 'title' => t('Libraries API dependencies'), + 'value' => t('These modules require Libraries API: %module_list. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', ['%module_list' => implode(', ', $libraries_dependencies)]), 'severity' => REQUIREMENT_WARNING, ]; } From 4ddd830b6105bfb8197c1c9313256bd42f95b25d Mon Sep 17 00:00:00 2001 From: kdruckman Date: Thu, 5 Mar 2020 01:44:35 -0600 Subject: [PATCH 14/17] space --- lightning.install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lightning.install b/lightning.install index f3903f2db..bd8bf6528 100644 --- a/lightning.install +++ b/lightning.install @@ -19,7 +19,7 @@ function lightning_requirements() { $requirements = []; $libraries_dependencies = []; $enabled_modules = \Drupal::moduleHandler()->getModuleList(); - + foreach ($enabled_modules as $module => $data) { $info = \Drupal::service('extension.list.module')->getExtensionInfo($module); if (in_array('drupal:libraries', $info['dependencies'])) { @@ -35,7 +35,6 @@ function lightning_requirements() { ]; } return $requirements; - } /** From 4fabfc7e0aa3e852dffd9ee4e12a9c83f03db9c6 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Thu, 5 Mar 2020 14:20:45 -0600 Subject: [PATCH 15/17] improvements --- composer.json | 1 + composer.lock | 598 +++++++++++++++++++++++-------------------- drupal-org-core.make | 4 +- drupal-org.make | 2 +- lightning.install | 38 +-- 5 files changed, 350 insertions(+), 293 deletions(-) diff --git a/composer.json b/composer.json index 8dea1106c..95cf4cba1 100644 --- a/composer.json +++ b/composer.json @@ -8,6 +8,7 @@ "cweagans/composer-patches": "^1.6", "drupal/acquia_connector": "*", "drupal/core": "~8.8.2 || 8.9.*", + "drupal/libraries": "^3.0", "drupal/lightning_api": "^4.4", "drupal/lightning_core": "^5.0", "drupal/lightning_layout": "^2.4", diff --git a/composer.lock b/composer.lock index 2ddde6bc6..ad3cc941c 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": "53c47c4a851dec44ba0d7ebb9771c5bb", + "content-hash": "eab92d9d3cc550663d7d8255478c373a", "packages": [ { "name": "asm89/stack-cors", @@ -63,7 +63,7 @@ "version": "v2.3.4", "source": { "type": "git", - "url": "https://github.com/fengyuanchen/cropper.git", + "url": "git@github.com:fengyuanchen/cropper.git", "reference": "30c58b29ee21010e17e58ebab165fbd84285c685" }, "dist": { @@ -96,7 +96,7 @@ "version": "3.4.1", "source": { "type": "git", - "url": "https://github.com/jquery/jquery-dist.git", + "url": "git@github.com:jquery/jquery-dist.git", "reference": "15bc73803f76bc53b654b9fdbbbc096f56d7c03d" }, "dist": { @@ -1366,20 +1366,20 @@ }, { "name": "drupal/blazy", - "version": "2.0.0-rc7", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/blazy.git", - "reference": "8.x-2.0-rc7" + "reference": "8.x-2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.0-rc7.zip", - "reference": "8.x-2.0-rc7", - "shasum": "f42b39939c05ef1d1fc4fcdc5451d4a5ff568096" + "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "6cc4a0d5eae87383c1d48e474ee00c2212e5b10b" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { @@ -1387,11 +1387,11 @@ "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.0-rc7", - "datestamp": "1581756279", + "version": "8.x-2.0", + "datestamp": "1582995235", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -1522,7 +1522,7 @@ }, "drupal": { "version": "8.x-1.9", - "datestamp": "1574140673", + "datestamp": "1549832280", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1540,6 +1540,10 @@ { "name": "e0ipso", "homepage": "https://www.drupal.org/user/550110" + }, + { + "name": "eojthebrave", + "homepage": "https://www.drupal.org/user/79230" } ], "description": "Declare all the consumers of your API", @@ -1614,16 +1618,16 @@ }, { "name": "drupal/core", - "version": "8.8.2", + "version": "8.8.3", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "f997857003276c2ae6d27db30f0eab9c7dd10e62" + "reference": "77971de6d6ade7366cdd3fadfc16c5d02e531446" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/f997857003276c2ae6d27db30f0eab9c7dd10e62", - "reference": "f997857003276c2ae6d27db30f0eab9c7dd10e62", + "url": "https://api.github.com/repos/drupal/core/zipball/77971de6d6ade7366cdd3fadfc16c5d02e531446", + "reference": "77971de6d6ade7366cdd3fadfc16c5d02e531446", "shasum": "" }, "require": { @@ -1846,7 +1850,7 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2020-02-01T19:51:15+00:00" + "time": "2020-03-04T18:01:37+00:00" }, { "name": "drupal/crop", @@ -2550,7 +2554,7 @@ }, "drupal": { "version": "8.x-1.0", - "datestamp": "1561765981", + "datestamp": "1562161679", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2582,6 +2586,10 @@ "name": "cs_shadow", "homepage": "https://www.drupal.org/user/2828287" }, + { + "name": "oknate", + "homepage": "https://www.drupal.org/user/471638" + }, { "name": "phenaproxima", "homepage": "https://www.drupal.org/user/205645" @@ -2653,10 +2661,6 @@ "name": "Drupal media CI", "homepage": "https://www.drupal.org/user/3057985" }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, { "name": "slashrsm", "homepage": "https://www.drupal.org/user/744628" @@ -2849,7 +2853,7 @@ }, "drupal": { "version": "8.x-1.0-alpha1", - "datestamp": "1560544385", + "datestamp": "1582916647", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -4128,7 +4132,7 @@ "datestamp": "1563908885", "security-coverage": { "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -6593,26 +6597,25 @@ }, { "name": "phpdocumentor/type-resolver", - "version": "1.0.1", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9" + "reference": "7462d5f123dfc080dfdf26897032a6513644fc95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", - "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95", + "reference": "7462d5f123dfc080dfdf26897032a6513644fc95", "shasum": "" }, "require": { - "php": "^7.1", + "php": "^7.2", "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "ext-tokenizer": "^7.1", - "mockery/mockery": "~1", - "phpunit/phpunit": "^7.0" + "ext-tokenizer": "^7.2", + "mockery/mockery": "~1" }, "type": "library", "extra": { @@ -6636,7 +6639,7 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2019-08-22T18:11:29+00:00" + "time": "2020-02-18T18:59:58+00:00" }, { "name": "psr/container", @@ -6992,7 +6995,7 @@ }, { "name": "symfony/class-loader", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", @@ -7048,16 +7051,16 @@ }, { "name": "symfony/console", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12" + "reference": "6827023c5872bea44b29d145de693b21981cf4cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12", - "reference": "7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12", + "url": "https://api.github.com/repos/symfony/console/zipball/6827023c5872bea44b29d145de693b21981cf4cd", + "reference": "6827023c5872bea44b29d145de693b21981cf4cd", "shasum": "" }, "require": { @@ -7116,20 +7119,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2020-01-10T07:52:48+00:00" + "time": "2020-02-15T13:27:16+00:00" }, { "name": "symfony/debug", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "70dd18e93bb8bdf3c4db7fde832619fef9828cf8" + "reference": "a99278d50af8a9164219da38d61fb161a7f6e0a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/70dd18e93bb8bdf3c4db7fde832619fef9828cf8", - "reference": "70dd18e93bb8bdf3c4db7fde832619fef9828cf8", + "url": "https://api.github.com/repos/symfony/debug/zipball/a99278d50af8a9164219da38d61fb161a7f6e0a6", + "reference": "a99278d50af8a9164219da38d61fb161a7f6e0a6", "shasum": "" }, "require": { @@ -7172,20 +7175,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2020-01-08T16:36:15+00:00" + "time": "2020-02-03T15:10:40+00:00" }, { "name": "symfony/dependency-injection", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "22000f10c9e1cfef051e8b4de46815b41a0223fc" + "reference": "b06b36883abc61eb8fb576e89102a9ba6c9ee7ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/22000f10c9e1cfef051e8b4de46815b41a0223fc", - "reference": "22000f10c9e1cfef051e8b4de46815b41a0223fc", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b06b36883abc61eb8fb576e89102a9ba6c9ee7ee", + "reference": "b06b36883abc61eb8fb576e89102a9ba6c9ee7ee", "shasum": "" }, "require": { @@ -7243,20 +7246,20 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2020-01-08T11:20:51+00:00" + "time": "2020-02-19T17:19:43+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "79ede8f2836e5ec910ebb325bde40f987244baa8" + "reference": "2f67a869aef3eecf42e7f8be4a8b86c92308686c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/79ede8f2836e5ec910ebb325bde40f987244baa8", - "reference": "79ede8f2836e5ec910ebb325bde40f987244baa8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2f67a869aef3eecf42e7f8be4a8b86c92308686c", + "reference": "2f67a869aef3eecf42e7f8be4a8b86c92308686c", "shasum": "" }, "require": { @@ -7306,20 +7309,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2020-01-04T12:05:51+00:00" + "time": "2020-02-04T08:04:52+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "f3abd07a56111ebe6a1ad6f1cbc23e4f8983f8f5" + "reference": "4d440be93adcfd5e4ee0bdc7acd1c3260625728f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f3abd07a56111ebe6a1ad6f1cbc23e4f8983f8f5", - "reference": "f3abd07a56111ebe6a1ad6f1cbc23e4f8983f8f5", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4d440be93adcfd5e4ee0bdc7acd1c3260625728f", + "reference": "4d440be93adcfd5e4ee0bdc7acd1c3260625728f", "shasum": "" }, "require": { @@ -7360,20 +7363,20 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2020-01-04T12:05:51+00:00" + "time": "2020-02-06T08:18:51+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "ea8af453ccf14e24a6cb2fcc3ece5814cbcc0ff4" + "reference": "449c3f7a9b8c47d178f80610afa6e2873ac0a3c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ea8af453ccf14e24a6cb2fcc3ece5814cbcc0ff4", - "reference": "ea8af453ccf14e24a6cb2fcc3ece5814cbcc0ff4", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/449c3f7a9b8c47d178f80610afa6e2873ac0a3c0", + "reference": "449c3f7a9b8c47d178f80610afa6e2873ac0a3c0", "shasum": "" }, "require": { @@ -7450,7 +7453,7 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2020-01-21T12:29:51+00:00" + "time": "2020-02-29T10:16:41+00:00" }, { "name": "symfony/polyfill-ctype", @@ -7914,16 +7917,16 @@ }, { "name": "symfony/process", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "5b9d2bcffe4678911a4c941c00b7c161252cf09a" + "reference": "b03b02dcea26ba4c65c16a73bab4f00c186b13da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/5b9d2bcffe4678911a4c941c00b7c161252cf09a", - "reference": "5b9d2bcffe4678911a4c941c00b7c161252cf09a", + "url": "https://api.github.com/repos/symfony/process/zipball/b03b02dcea26ba4c65c16a73bab4f00c186b13da", + "reference": "b03b02dcea26ba4c65c16a73bab4f00c186b13da", "shasum": "" }, "require": { @@ -7959,7 +7962,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "time": "2020-02-04T08:04:52+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -8028,16 +8031,16 @@ }, { "name": "symfony/routing", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "6366fbf86a05abccf77d6e605abbb0ee342f2cfa" + "reference": "c1377905edfa76e6934dd3c73f9a073305b47c00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/6366fbf86a05abccf77d6e605abbb0ee342f2cfa", - "reference": "6366fbf86a05abccf77d6e605abbb0ee342f2cfa", + "url": "https://api.github.com/repos/symfony/routing/zipball/c1377905edfa76e6934dd3c73f9a073305b47c00", + "reference": "c1377905edfa76e6934dd3c73f9a073305b47c00", "shasum": "" }, "require": { @@ -8100,20 +8103,20 @@ "uri", "url" ], - "time": "2020-01-04T12:05:51+00:00" + "time": "2020-02-04T08:04:52+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "e85feee0d587c65713ec6d3e2a1d8782e6d219dc" + "reference": "f8b99832d016e2d2c77c797c3df561adecd33dd3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/e85feee0d587c65713ec6d3e2a1d8782e6d219dc", - "reference": "e85feee0d587c65713ec6d3e2a1d8782e6d219dc", + "url": "https://api.github.com/repos/symfony/serializer/zipball/f8b99832d016e2d2c77c797c3df561adecd33dd3", + "reference": "f8b99832d016e2d2c77c797c3df561adecd33dd3", "shasum": "" }, "require": { @@ -8179,20 +8182,20 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "time": "2020-02-24T14:33:45+00:00" }, { "name": "symfony/translation", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "577ec9ba1d6443947c48058acc3de298ad25e2bf" + "reference": "1eb074e0bd94939a30dd14dbecf7a92b165cea34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/577ec9ba1d6443947c48058acc3de298ad25e2bf", - "reference": "577ec9ba1d6443947c48058acc3de298ad25e2bf", + "url": "https://api.github.com/repos/symfony/translation/zipball/1eb074e0bd94939a30dd14dbecf7a92b165cea34", + "reference": "1eb074e0bd94939a30dd14dbecf7a92b165cea34", "shasum": "" }, "require": { @@ -8249,20 +8252,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2020-01-04T12:05:51+00:00" + "time": "2020-02-04T07:22:30+00:00" }, { "name": "symfony/validator", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "46580e4429797438033fc1f226cb4cba67afe280" + "reference": "b5ccfc1adf301bb6ca63823455fbd1b20902bcfe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/46580e4429797438033fc1f226cb4cba67afe280", - "reference": "46580e4429797438033fc1f226cb4cba67afe280", + "url": "https://api.github.com/repos/symfony/validator/zipball/b5ccfc1adf301bb6ca63823455fbd1b20902bcfe", + "reference": "b5ccfc1adf301bb6ca63823455fbd1b20902bcfe", "shasum": "" }, "require": { @@ -8335,20 +8338,20 @@ ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", - "time": "2020-01-14T18:27:07+00:00" + "time": "2020-02-29T09:08:42+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "aa46bc2233097d5212332c907f9911533acfbf80" + "reference": "bc63e15160866e8730a1f738541b194c401f72bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/aa46bc2233097d5212332c907f9911533acfbf80", - "reference": "aa46bc2233097d5212332c907f9911533acfbf80", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bc63e15160866e8730a1f738541b194c401f72bf", + "reference": "bc63e15160866e8730a1f738541b194c401f72bf", "shasum": "" }, "require": { @@ -8394,7 +8397,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2020-01-13T08:00:59+00:00" + "time": "2020-01-16T19:04:26+00:00" }, { "name": "twig/twig", @@ -9516,16 +9519,16 @@ }, { "name": "composer/xdebug-handler", - "version": "1.4.0", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "cbe23383749496fe0f373345208b79568e4bc248" + "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/cbe23383749496fe0f373345208b79568e4bc248", - "reference": "cbe23383749496fe0f373345208b79568e4bc248", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7", + "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7", "shasum": "" }, "require": { @@ -9556,7 +9559,7 @@ "Xdebug", "performance" ], - "time": "2019-11-06T16:40:04+00:00" + "time": "2020-03-01T12:26:26+00:00" }, { "name": "consolidation/annotated-command", @@ -10621,7 +10624,7 @@ }, { "name": "drupal/core-dev", - "version": "8.8.2", + "version": "8.8.3", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", @@ -12273,22 +12276,22 @@ }, { "name": "phar-io/manifest", - "version": "1.0.3", + "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", - "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0", + "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0", "shasum": "" }, "require": { "ext-dom": "*", "ext-phar": "*", - "phar-io/version": "^2.0", + "phar-io/version": "^1.0.1", "php": "^5.6 || ^7.0" }, "type": "library", @@ -12324,20 +12327,20 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", - "time": "2018-07-08T19:23:20+00:00" + "time": "2017-03-05T18:14:27+00:00" }, { "name": "phar-io/version", - "version": "2.0.1", + "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/phar-io/version.git", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", - "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df", + "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df", "shasum": "" }, "require": { @@ -12371,7 +12374,7 @@ } ], "description": "Library for handling version information and constraints", - "time": "2018-07-08T19:19:57+00:00" + "time": "2017-03-05T17:38:23+00:00" }, { "name": "phpro/grumphp", @@ -12480,16 +12483,16 @@ }, { "name": "phpspec/prophecy", - "version": "v1.10.2", + "version": "v1.10.3", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "b4400efc9d206e83138e2bb97ed7f5b14b831cd9" + "reference": "451c3cd1418cf640de218914901e51b064abb093" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b4400efc9d206e83138e2bb97ed7f5b14b831cd9", - "reference": "b4400efc9d206e83138e2bb97ed7f5b14b831cd9", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", + "reference": "451c3cd1418cf640de218914901e51b064abb093", "shasum": "" }, "require": { @@ -12539,44 +12542,44 @@ "spy", "stub" ], - "time": "2020-01-20T15:57:02+00:00" + "time": "2020-03-05T15:02:03+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "6.1.4", + "version": "5.3.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" + "reference": "c89677919c5dd6d3b3852f230a663118762218ac" }, "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/c89677919c5dd6d3b3852f230a663118762218ac", + "reference": "c89677919c5dd6d3b3852f230a663118762218ac", "shasum": "" }, "require": { "ext-dom": "*", "ext-xmlwriter": "*", - "php": "^7.1", - "phpunit/php-file-iterator": "^2.0", + "php": "^7.0", + "phpunit/php-file-iterator": "^1.4.2", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^3.0", + "phpunit/php-token-stream": "^2.0.1", "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^3.1 || ^4.0", + "sebastian/environment": "^3.0", "sebastian/version": "^2.0.1", "theseer/tokenizer": "^1.1" }, "require-dev": { - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^6.0" }, "suggest": { - "ext-xdebug": "^2.6.0" + "ext-xdebug": "^2.5.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.1-dev" + "dev-master": "5.3.x-dev" } }, "autoload": { @@ -12602,32 +12605,29 @@ "testing", "xunit" ], - "time": "2018-10-31T16:06:48+00:00" + "time": "2018-04-06T15:36:58+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "2.0.2", + "version": "1.4.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "050bedf145a257b1ff02746c31894800e5122946" + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", - "reference": "050bedf145a257b1ff02746c31894800e5122946", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", "shasum": "" }, "require": { - "php": "^7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.1" + "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { @@ -12642,7 +12642,7 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", + "email": "sb@sebastian-bergmann.de", "role": "lead" } ], @@ -12652,7 +12652,7 @@ "filesystem", "iterator" ], - "time": "2018-09-13T20:33:42+00:00" + "time": "2017-11-27T13:52:08+00:00" }, { "name": "phpunit/php-text-template", @@ -12697,28 +12697,28 @@ }, { "name": "phpunit/php-timer", - "version": "2.1.2", + "version": "1.0.9", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", - "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^5.3.3 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "1.0-dev" } }, "autoload": { @@ -12733,7 +12733,7 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", + "email": "sb@sebastian-bergmann.de", "role": "lead" } ], @@ -12742,33 +12742,33 @@ "keywords": [ "timer" ], - "time": "2019-06-07T04:22:29+00:00" + "time": "2017-02-26T11:10:40+00:00" }, { "name": "phpunit/php-token-stream", - "version": "3.1.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" + "reference": "791198a2c6254db10131eecfe8c06670700904db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", - "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", + "reference": "791198a2c6254db10131eecfe8c06670700904db", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": "^7.1" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "^6.2.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -12791,57 +12791,57 @@ "keywords": [ "tokenizer" ], - "time": "2019-09-17T06:23:10+00:00" + "time": "2017-11-27T05:48:46+00:00" }, { "name": "phpunit/phpunit", - "version": "7.5.20", + "version": "6.5.14", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "9467db479d1b0487c99733bb1e7944d32deded2c" + "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c", - "reference": "9467db479d1b0487c99733bb1e7944d32deded2c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7", + "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.1", "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", + "myclabs/deep-copy": "^1.6.1", + "phar-io/manifest": "^1.0.1", + "phar-io/version": "^1.0", + "php": "^7.0", "phpspec/prophecy": "^1.7", - "phpunit/php-code-coverage": "^6.0.7", - "phpunit/php-file-iterator": "^2.0.1", + "phpunit/php-code-coverage": "^5.3", + "phpunit/php-file-iterator": "^1.4.3", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1", - "sebastian/comparator": "^3.0", - "sebastian/diff": "^3.0", - "sebastian/environment": "^4.0", + "phpunit/php-timer": "^1.0.9", + "phpunit/phpunit-mock-objects": "^5.0.9", + "sebastian/comparator": "^2.1", + "sebastian/diff": "^2.0", + "sebastian/environment": "^3.1", "sebastian/exporter": "^3.1", "sebastian/global-state": "^2.0", "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0", + "sebastian/resource-operations": "^1.0", "sebastian/version": "^2.0.1" }, "conflict": { - "phpunit/phpunit-mock-objects": "*" + "phpdocumentor/reflection-docblock": "3.0.2", + "phpunit/dbunit": "<3.0" }, "require-dev": { "ext-pdo": "*" }, "suggest": { - "ext-soap": "*", "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0" + "phpunit/php-invoker": "^1.1" }, "bin": [ "phpunit" @@ -12849,7 +12849,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "7.5-dev" + "dev-master": "6.5.x-dev" } }, "autoload": { @@ -12875,7 +12875,67 @@ "testing", "xunit" ], - "time": "2020-01-08T08:45:45+00:00" + "time": "2019-02-01T05:22:47+00:00" + }, + { + "name": "phpunit/phpunit-mock-objects", + "version": "5.0.10", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.5", + "php": "^7.0", + "phpunit/php-text-template": "^1.2.1", + "sebastian/exporter": "^3.1" + }, + "conflict": { + "phpunit/phpunit": "<6.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5.11" + }, + "suggest": { + "ext-soap": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Mock Object library for PHPUnit", + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", + "keywords": [ + "mock", + "xunit" + ], + "abandoned": true, + "time": "2018-08-09T05:50:03+00:00" }, { "name": "psy/psysh", @@ -12998,30 +13058,30 @@ }, { "name": "sebastian/comparator", - "version": "3.0.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", - "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", "shasum": "" }, "require": { - "php": "^7.1", - "sebastian/diff": "^3.0", + "php": "^7.0", + "sebastian/diff": "^2.0 || ^3.0", "sebastian/exporter": "^3.1" }, "require-dev": { - "phpunit/phpunit": "^7.1" + "phpunit/phpunit": "^6.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "2.1.x-dev" } }, "autoload": { @@ -13058,33 +13118,32 @@ "compare", "equality" ], - "time": "2018-07-12T15:12:46+00:00" + "time": "2018-02-01T13:46:46+00:00" }, { "name": "sebastian/diff", - "version": "3.0.2", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" + "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", - "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", + "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", - "symfony/process": "^2 || ^3.3 || ^4" + "phpunit/phpunit": "^6.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -13109,40 +13168,34 @@ "description": "Diff implementation", "homepage": "https://github.com/sebastianbergmann/diff", "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" + "diff" ], - "time": "2019-02-04T06:01:07+00:00" + "time": "2017-08-03T08:09:46+00:00" }, { "name": "sebastian/environment", - "version": "4.2.3", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", - "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5", + "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "^7.5" - }, - "suggest": { - "ext-posix": "*" + "phpunit/phpunit": "^6.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "3.1.x-dev" } }, "autoload": { @@ -13167,7 +13220,7 @@ "environment", "hhvm" ], - "time": "2019-11-20T08:46:58+00:00" + "time": "2017-07-01T08:51:00+00:00" }, { "name": "sebastian/exporter", @@ -13424,22 +13477,21 @@ }, { "name": "sebastian/phpcpd", - "version": "4.1.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpcpd.git", - "reference": "0d9afa762f2400de077b2192f4a9d127de0bb78e" + "reference": "dfed51c1288790fc957c9433e2f49ab152e8a564" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpcpd/zipball/0d9afa762f2400de077b2192f4a9d127de0bb78e", - "reference": "0d9afa762f2400de077b2192f4a9d127de0bb78e", + "url": "https://api.github.com/repos/sebastianbergmann/phpcpd/zipball/dfed51c1288790fc957c9433e2f49ab152e8a564", + "reference": "dfed51c1288790fc957c9433e2f49ab152e8a564", "shasum": "" }, "require": { - "ext-dom": "*", - "php": "^7.1", - "phpunit/php-timer": "^2.0", + "php": "^5.6|^7.0", + "phpunit/php-timer": "^1.0.6", "sebastian/finder-facade": "^1.1", "sebastian/version": "^1.0|^2.0", "symfony/console": "^2.7|^3.0|^4.0" @@ -13450,7 +13502,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -13471,7 +13523,7 @@ ], "description": "Copy/Paste Detector (CPD) for PHP code.", "homepage": "https://github.com/sebastianbergmann/phpcpd", - "time": "2018-09-17T17:17:27+00:00" + "time": "2017-11-16T08:49:28+00:00" }, { "name": "sebastian/recursion-context", @@ -13528,25 +13580,25 @@ }, { "name": "sebastian/resource-operations", - "version": "2.0.1", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", - "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=5.6.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -13566,7 +13618,7 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2018-10-04T04:07:39+00:00" + "time": "2015-07-28T20:34:47+00:00" }, { "name": "sebastian/version", @@ -13757,7 +13809,7 @@ }, { "name": "symfony/browser-kit", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", @@ -13814,16 +13866,16 @@ }, { "name": "symfony/config", - "version": "v4.4.4", + "version": "v4.4.5", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "4d3979f54472637169080f802dc82197e21fdcce" + "reference": "cbfef5ae91ccd3b06621c18d58cd355c68c87ae9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/4d3979f54472637169080f802dc82197e21fdcce", - "reference": "4d3979f54472637169080f802dc82197e21fdcce", + "url": "https://api.github.com/repos/symfony/config/zipball/cbfef5ae91ccd3b06621c18d58cd355c68c87ae9", + "reference": "cbfef5ae91ccd3b06621c18d58cd355c68c87ae9", "shasum": "" }, "require": { @@ -13874,20 +13926,20 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2020-01-04T13:00:46+00:00" + "time": "2020-02-04T09:32:40+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "e1b3e1a0621d6e48ee46092b4c7d8280f746b3c5" + "reference": "ee9b946e7223b11257329a054c64396b19d619e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/e1b3e1a0621d6e48ee46092b4c7d8280f746b3c5", - "reference": "e1b3e1a0621d6e48ee46092b4c7d8280f746b3c5", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee9b946e7223b11257329a054c64396b19d619e1", + "reference": "ee9b946e7223b11257329a054c64396b19d619e1", "shasum": "" }, "require": { @@ -13927,20 +13979,20 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "time": "2020-02-04T08:04:52+00:00" }, { "name": "symfony/dom-crawler", - "version": "v4.4.4", + "version": "v4.4.5", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "b66fe8ccc850ea11c4cd31677706c1219768bea1" + "reference": "11dcf08f12f29981bf770f097a5d64d65bce5929" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b66fe8ccc850ea11c4cd31677706c1219768bea1", - "reference": "b66fe8ccc850ea11c4cd31677706c1219768bea1", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/11dcf08f12f29981bf770f097a5d64d65bce5929", + "reference": "11dcf08f12f29981bf770f097a5d64d65bce5929", "shasum": "" }, "require": { @@ -13988,11 +14040,11 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2020-01-04T13:00:46+00:00" + "time": "2020-02-29T10:05:28+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", @@ -14042,16 +14094,16 @@ }, { "name": "symfony/finder", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "a90a9d3b9f458a5cdeabfa4090b20c000ca3962f" + "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/a90a9d3b9f458a5cdeabfa4090b20c000ca3962f", - "reference": "a90a9d3b9f458a5cdeabfa4090b20c000ca3962f", + "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200", + "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200", "shasum": "" }, "require": { @@ -14087,20 +14139,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2020-01-01T11:03:25+00:00" + "time": "2020-02-14T07:34:21+00:00" }, { "name": "symfony/lock", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "340d604e9fe8f76581074a9f364cb1d1c05a3440" + "reference": "c8fe2c2ea8177852825a0b92d0897114feda0695" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/340d604e9fe8f76581074a9f364cb1d1c05a3440", - "reference": "340d604e9fe8f76581074a9f364cb1d1c05a3440", + "url": "https://api.github.com/repos/symfony/lock/zipball/c8fe2c2ea8177852825a0b92d0897114feda0695", + "reference": "c8fe2c2ea8177852825a0b92d0897114feda0695", "shasum": "" }, "require": { @@ -14149,11 +14201,11 @@ "redlock", "semaphore" ], - "time": "2020-01-01T11:03:25+00:00" + "time": "2020-02-04T08:04:52+00:00" }, { "name": "symfony/options-resolver", - "version": "v4.4.4", + "version": "v4.4.5", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", @@ -14207,23 +14259,23 @@ }, { "name": "symfony/phpunit-bridge", - "version": "v3.4.37", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "ebfd1b428ffc14306e843092763f228bfba168d0" + "reference": "c02893ae43532b46a4f0e0f207d088b939f278d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/ebfd1b428ffc14306e843092763f228bfba168d0", - "reference": "ebfd1b428ffc14306e843092763f228bfba168d0", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/c02893ae43532b46a4f0e0f207d088b939f278d9", + "reference": "c02893ae43532b46a4f0e0f207d088b939f278d9", "shasum": "" }, "require": { "php": ">=5.3.3" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0" }, "suggest": { "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" @@ -14268,20 +14320,20 @@ ], "description": "Symfony PHPUnit Bridge", "homepage": "https://symfony.com", - "time": "2020-01-14T14:27:59+00:00" + "time": "2020-02-21T08:01:47+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.4.4", + "version": "v4.4.5", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "46b53fd714568af343953c039ff47b67ce8af8d6" + "reference": "2572839911702b0405479410ea7a1334bfab0b96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46b53fd714568af343953c039ff47b67ce8af8d6", - "reference": "46b53fd714568af343953c039ff47b67ce8af8d6", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2572839911702b0405479410ea7a1334bfab0b96", + "reference": "2572839911702b0405479410ea7a1334bfab0b96", "shasum": "" }, "require": { @@ -14344,7 +14396,7 @@ "debug", "dump" ], - "time": "2020-01-25T12:44:29+00:00" + "time": "2020-02-24T13:10:00+00:00" }, { "name": "theseer/fdomdocument", @@ -14428,16 +14480,16 @@ }, { "name": "vijaycs85/drupal-quality-checker", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/vijaycs85/drupal-quality-checker.git", - "reference": "9b2975b5f17988f96e81f0c7b9af7d5445bebd22" + "reference": "42eb3c169b669f6753e429d2bbd12dcbe2ba085b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vijaycs85/drupal-quality-checker/zipball/9b2975b5f17988f96e81f0c7b9af7d5445bebd22", - "reference": "9b2975b5f17988f96e81f0c7b9af7d5445bebd22", + "url": "https://api.github.com/repos/vijaycs85/drupal-quality-checker/zipball/42eb3c169b669f6753e429d2bbd12dcbe2ba085b", + "reference": "42eb3c169b669f6753e429d2bbd12dcbe2ba085b", "shasum": "" }, "require": { @@ -14447,7 +14499,7 @@ "jakub-onderka/php-parallel-lint": "^1.0", "localheinz/composer-normalize": "^1.2", "phpro/grumphp": "^0.16", - "sebastian/phpcpd": "^4.0" + "sebastian/phpcpd": "^3.0" }, "type": "project", "notification-url": "https://packagist.org/downloads/", @@ -14463,7 +14515,7 @@ ], "description": "Setups code quality checking tools for Drupal project.", "homepage": "https://github.com/vijaycs85/drupal-quality-checker", - "time": "2019-10-09T16:39:48+00:00" + "time": "2019-10-09T19:40:24+00:00" }, { "name": "webflo/drupal-finder", diff --git a/drupal-org-core.make b/drupal-org-core.make index 1faa052d7..b48aad9fe 100644 --- a/drupal-org-core.make +++ b/drupal-org-core.make @@ -4,8 +4,8 @@ projects[drupal][type] = core projects[drupal][download][type] = git projects[drupal][download][url] = https://git.drupal.org/project/drupal.git projects[drupal][download][branch] = 8.8.x -projects[drupal][download][tag] = 8.8.2 +projects[drupal][download][tag] = 8.8.3 projects[drupal][patch][] = https://www.drupal.org/files/issues/2020-02-07/2869592-remove-update-warning-34.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2019-11-05/1356276-531-8.8.x-4.patch projects[drupal][patch][] = https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch -projects[drupal][patch][] = https://www.drupal.org/files/issues/2019-11-27/2815221-125.patch +projects[drupal][patch][] = https://www.drupal.org/files/issues/2019-11-27/2815221-125.patch \ No newline at end of file diff --git a/drupal-org.make b/drupal-org.make index f8c2aac3c..ff511cece 100644 --- a/drupal-org.make +++ b/drupal-org.make @@ -8,7 +8,7 @@ projects[autosave_form][version] = 1.1 projects[bg_image_formatter][type] = module projects[bg_image_formatter][version] = 1.12 projects[blazy][type] = module -projects[blazy][version] = 2.0-rc7 +projects[blazy][version] = 2.0 projects[conflict][type] = module projects[conflict][version] = 2.0-alpha1 projects[consumers][type] = module diff --git a/lightning.install b/lightning.install index bd8bf6528..3da3384e4 100644 --- a/lightning.install +++ b/lightning.install @@ -8,33 +8,37 @@ use Drupal\Core\Entity\Entity\EntityViewDisplay; use Drupal\field\Entity\FieldConfig; use Drupal\lightning_core\ConfigHelper as Config; +use Drupal\lightning_core\Element; /** * Alerts users of Libraries API dependencies. * * A future version of Lightning will remove Libraries API, so * users must add that dependency to composer.json manually. + * + * @todo Remove this function when Libraries API is no longer shipped with Lightning. */ function lightning_requirements() { - $requirements = []; - $libraries_dependencies = []; - $enabled_modules = \Drupal::moduleHandler()->getModuleList(); - - foreach ($enabled_modules as $module => $data) { - $info = \Drupal::service('extension.list.module')->getExtensionInfo($module); - if (in_array('drupal:libraries', $info['dependencies'])) { - $libraries_dependencies[$module] = $info['name']; - } - } + $requirements = []; + $libraries_dependencies = []; + $enabled_modules = \Drupal::service('extension.list.module')->getAllInstalledInfo(); - if ($enabled_modules) { - $requirements['lightning_libraries'] = [ - 'title' => t('Libraries API dependencies'), - 'value' => t('These modules require Libraries API: %module_list. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', ['%module_list' => implode(', ', $libraries_dependencies)]), - 'severity' => REQUIREMENT_WARNING, - ]; + foreach ($enabled_modules as $module => $info) { + foreach (['libraries:libraries', 'libraries'] as $needle) { + if (in_array($needle, $info['dependencies'], TRUE)) { + $libraries_dependencies[$module] = $info['name']; + } } - return $requirements; + } + + if ($enabled_modules) { + $requirements['lightning_libraries'] = [ + 'title' => t('Libraries API dependencies'), + 'value' => t('These modules require Libraries API: %module_list. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', ['%module_list' => Element::oxford($libraries_dependencies)]), + 'severity' => REQUIREMENT_WARNING, + ]; + } + return $requirements; } /** From 7393acb1de186a107d238334f42c26375b070bd0 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 6 Mar 2020 12:00:46 -0600 Subject: [PATCH 16/17] more improvements --- lightning.install | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lightning.install b/lightning.install index 3da3384e4..968ee889f 100644 --- a/lightning.install +++ b/lightning.install @@ -24,17 +24,17 @@ function lightning_requirements() { $enabled_modules = \Drupal::service('extension.list.module')->getAllInstalledInfo(); foreach ($enabled_modules as $module => $info) { - foreach (['libraries:libraries', 'libraries'] as $needle) { - if (in_array($needle, $info['dependencies'], TRUE)) { - $libraries_dependencies[$module] = $info['name']; - } + if (array_intersect($info['dependencies'], ['libraries:libraries', 'libraries'])) { + $libraries_dependencies[$module] = $info['name']; } } - if ($enabled_modules) { + if ($libraries_dependencies) { $requirements['lightning_libraries'] = [ 'title' => t('Libraries API dependencies'), - 'value' => t('These modules require Libraries API: %module_list. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', ['%module_list' => Element::oxford($libraries_dependencies)]), + 'value' => t('These modules require Libraries API: %module_list. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', [ + '%module_list' => Element::oxford($libraries_dependencies) + ]), 'severity' => REQUIREMENT_WARNING, ]; } From a68d32dceac431c93889d7d64cb1447a3a1806a8 Mon Sep 17 00:00:00 2001 From: kdruckman Date: Fri, 6 Mar 2020 12:26:16 -0600 Subject: [PATCH 17/17] oops, comma --- lightning.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning.install b/lightning.install index 968ee889f..0d1469214 100644 --- a/lightning.install +++ b/lightning.install @@ -33,7 +33,7 @@ function lightning_requirements() { $requirements['lightning_libraries'] = [ 'title' => t('Libraries API dependencies'), 'value' => t('These modules require Libraries API: %module_list. Lightning will soon remove Libraries API as a dependency, so you must add that dependency to your composer.json manually.', [ - '%module_list' => Element::oxford($libraries_dependencies) + '%module_list' => Element::oxford($libraries_dependencies), ]), 'severity' => REQUIREMENT_WARNING, ];