From 0811e2cc7d05787b0e78220dd074b3c4d56e5c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Costa=20Silva?= <1574795+joaocsilva@users.noreply.github.com> Date: Fri, 8 Sep 2023 11:30:48 +0200 Subject: [PATCH 1/8] DQA-7539: Toolkit use mock for all endpoints (#692) --- .drone.yml | 2 +- .gitignore | 1 + config/runner/toolkit.yml | 1 + docker-compose.yml | 3 + phpunit.xml.dist | 5 +- src/Mock.php | 68 + .../Commands/ComponentCheckCommands.php | 10 +- src/TaskRunner/Commands/ToolCommands.php | 24 +- src/Website.php | 69 +- tests/AbstractTest.php | 14 - tests/Unit/MockTest.php | 90 - tests/fixtures/commands/build.yml | 2 +- tests/fixtures/commands/component-check.yml | 352 +- tests/fixtures/commands/docker.yml | 16 +- tests/fixtures/commands/tool.yml | 93 +- .../sample-composer-toolkit-in-require.lock | 6 +- .../sample-composer-toolkit-outdated.lock | 4 +- tests/fixtures/samples/sample-composer.lock | 10 +- tests/mock/api/v1/.htaccess | 3 - tests/mock/api/v1/forbidden-permissions.php | 11 - tests/mock/api/v1/package-reviews-7.x.php | 19476 --------- tests/mock/api/v1/package-reviews-8.x.php | 16682 ------- tests/mock/api/v1/package-reviews-all.php | 36152 ---------------- tests/mock/api/v1/package-reviews.php | 9 - .../ec-europa/digit-qa-reference/.htaccess | 3 - .../digit-qa-reference/information.php | 70 - .../toolkit-reference/information/.htaccess | 3 - .../information/constraints.php | 83 - tests/mock/api/v1/toolkit-requirements.php | 40 - 29 files changed, 207 insertions(+), 73095 deletions(-) create mode 100644 src/Mock.php delete mode 100644 tests/Unit/MockTest.php delete mode 100644 tests/mock/api/v1/.htaccess delete mode 100644 tests/mock/api/v1/forbidden-permissions.php delete mode 100644 tests/mock/api/v1/package-reviews-7.x.php delete mode 100644 tests/mock/api/v1/package-reviews-8.x.php delete mode 100644 tests/mock/api/v1/package-reviews-all.php delete mode 100644 tests/mock/api/v1/package-reviews.php delete mode 100644 tests/mock/api/v1/project/ec-europa/digit-qa-reference/.htaccess delete mode 100644 tests/mock/api/v1/project/ec-europa/digit-qa-reference/information.php delete mode 100644 tests/mock/api/v1/project/ec-europa/toolkit-reference/information/.htaccess delete mode 100644 tests/mock/api/v1/project/ec-europa/toolkit-reference/information/constraints.php delete mode 100644 tests/mock/api/v1/toolkit-requirements.php diff --git a/.drone.yml b/.drone.yml index 64fc8db92..6c163c5df 100644 --- a/.drone.yml +++ b/.drone.yml @@ -71,7 +71,7 @@ pipeline: phpunit: group: test image: registry.fpfis.eu/fpfis/httpd-php:${PHP_VERSION=8.1}-ci - secrets: [ qa_api_basic_auth, qa_api_auth_token, github_api_token, gitlab_api_token, composer_auth, asda_user, asda_password, nextcloud_user, nextcloud_pass ] + secrets: [ qa_api_basic_auth, qa_api_auth_token, github_api_token, gitlab_api_token, composer_auth, asda_user, asda_password, nextcloud_user, nextcloud_pass, toolkit_mock_repo ] environment: *env commands: - ./run toolkit:test-phpunit --execution=parallel diff --git a/.gitignore b/.gitignore index 677907d44..bd03a951d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ node_modules/ package.json package-lock.json /docs_tmp/ +/mock # Documentation folder exclusions. !docs/ diff --git a/config/runner/toolkit.yml b/config/runner/toolkit.yml index dde5a33f1..c74876634 100644 --- a/config/runner/toolkit.yml +++ b/config/runner/toolkit.yml @@ -1,4 +1,5 @@ toolkit: + project_id: toolkit tmp_folder: '/cache' clean: config_file: 'config/sync/core.extension.yml' diff --git a/docker-compose.yml b/docker-compose.yml index 15b115648..caaa1948c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,9 @@ services: ASDA_PASSWORD: QA_API_BASIC_AUTH: QA_API_AUTH_TOKEN: + QA_WEBSITE_URL: + TOOLKIT_MOCK_REPO: + TOOLKIT_MOCK_BRANCH: 0.0.2 GITHUB_API_TOKEN: GITLAB_API_TOKEN: XDEBUG_CONFIG: client_host=host.docker.internal diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 88838c6cd..e5f212a60 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -11,6 +11,8 @@ bootstrap = "vendor/autoload.php"> + + @@ -19,9 +21,6 @@ tests/Unit/GitHooksCommandsTest.php - - tests/Unit/MockTest.php - tests/Unit/ReplaceBlockTest.php diff --git a/src/Mock.php b/src/Mock.php new file mode 100644 index 000000000..545e1bc06 --- /dev/null +++ b/src/Mock.php @@ -0,0 +1,68 @@ +run(); + if ($process->getExitCode()) { + throw new \Exception($process->getErrorOutput()); + } + return file_exists($mockDir); + } + + /** + * Returns the content of the endpoint from the mock. + * + * @param string $endpoint + * The endpoint to return the content from. + * + * @throws \Exception + * If the mock or endpoint file is not found. + */ + public static function getEndpointContent(string $endpoint) + { + if (!Toolkit::isCiCd()) { + return false; + } + $mockDir = getenv('TOOLKIT_MOCK_DIR') ?: 'mock'; + if (!file_exists($mockDir)) { + throw new \Exception("Mock not found at '$mockDir'."); + } + $endpointFile = "$mockDir/$endpoint.json"; + if (!file_exists($endpointFile)) { + throw new \Exception("No file found for endpoint '$endpoint'."); + } + return file_get_contents($endpointFile); + } + +} diff --git a/src/TaskRunner/Commands/ComponentCheckCommands.php b/src/TaskRunner/Commands/ComponentCheckCommands.php index 44026d34e..814cc0d6b 100644 --- a/src/TaskRunner/Commands/ComponentCheckCommands.php +++ b/src/TaskRunner/Commands/ComponentCheckCommands.php @@ -57,7 +57,7 @@ public function componentCheck(ConsoleIO $io, array $options = [ if (!empty($options['endpoint'])) { Website::setUrl($options['endpoint']); } - if (empty($auth = Website::apiAuth())) { + if (empty(Website::apiAuth())) { return 1; } $this->io = $io; @@ -79,9 +79,11 @@ public function componentCheck(ConsoleIO $io, array $options = [ } $status = 0; - $endpoint = Website::url(); - $result = Website::get($endpoint . '/api/v1/package-reviews?version=8.x', $auth); - $data = json_decode($result, true); + $data = Website::packages(); + if (empty($data)) { + $io->error('Failed to connect to the endpoint ' . Website::url() . '/api/v1/package-reviews'); + return 1; + } $modules = array_filter(array_combine(array_column($data, 'name'), $data)); // To test this command execute it with the --test-command option: diff --git a/src/TaskRunner/Commands/ToolCommands.php b/src/TaskRunner/Commands/ToolCommands.php index a4c87e180..fdda4c36a 100644 --- a/src/TaskRunner/Commands/ToolCommands.php +++ b/src/TaskRunner/Commands/ToolCommands.php @@ -99,16 +99,6 @@ public function optsReview(ConsoleIO $io, array $options = [ $io->say("The file '.opts.yml' was not found, skipping."); return ResultData::EXITCODE_OK; } - $project_id = $this->getConfig()->get('toolkit.project_id'); - if (empty($project_id)) { - $io->say('The configuration toolkit.project_id value is not valid.'); - return ResultData::EXITCODE_ERROR; - } - $forbiddenCommands = Website::projectConstraints($project_id); - if (empty($forbiddenCommands)) { - $io->error('Failed to get constraints from the endpoint.'); - return ResultData::EXITCODE_ERROR; - } // Check for invalid php_version value, if given version is 8.0 as float when converted to string will be 8 // and will cause issues like in docker images. @@ -127,6 +117,18 @@ public function optsReview(ConsoleIO $io, array $options = [ $io->say("Your structure for the 'upgrade_commands' is invalid.\nSee the documentation at https://webgate.ec.europa.eu/fpfis/wikis/display/MULTISITE/Pipeline+configuration+and+override"); return ResultData::EXITCODE_ERROR; } + + $project_id = $this->getConfig()->get('toolkit.project_id'); + if (empty($project_id)) { + $io->say('The configuration toolkit.project_id value is not valid.'); + return ResultData::EXITCODE_ERROR; + } + + $forbiddenCommands = Website::projectConstraints($project_id); + if (empty($forbiddenCommands)) { + $io->error('Failed to get constraints from the endpoint.'); + return ResultData::EXITCODE_ERROR; + } // Gather all the commands, ignore the 'ephemeral' commands. $commands = []; if (!empty($parseOptsFile['upgrade_commands']['append']['acceptance'])) { @@ -180,7 +182,7 @@ public function toolkitRequirements(ConsoleIO $io, array $options = [ } $data = Website::requirements(); if (empty($data)) { - $this->writeln('Failed to connect to the endpoint. Required env var QA_API_AUTH_TOKEN.'); + $io->error('Failed to connect to the endpoint ' . Website::url() . '/api/v1/toolkit-requirements'); return 1; } if (!isset($data['toolkit'])) { diff --git a/src/Website.php b/src/Website.php index 947aa5108..51a8c8c8c 100644 --- a/src/Website.php +++ b/src/Website.php @@ -224,6 +224,7 @@ public static function post(array $fields, AuthorizationInterface $auth): string */ public static function projectInformation(string $project_id) { + $project_id = "$project_id-reference"; if (!isset($GLOBALS['projects'])) { $GLOBALS['projects'] = []; } @@ -233,11 +234,10 @@ public static function projectInformation(string $project_id) if (empty($auth = self::apiAuth())) { return false; } - $endpoint = "/api/v1/project/ec-europa/$project_id-reference/information"; - $response = self::get(self::url() . $endpoint, $auth); - $data = json_decode($response, true); - $data = reset($data); - if (!empty($data['name']) && $data['name'] === "$project_id-reference") { + $endpoint = "api/v1/project/ec-europa/$project_id/information"; + $data = self::getWithMockFallback(self::url() . '/' . $endpoint, $auth); + if (!empty($data)) { + $data = reset($data); $GLOBALS['projects'][$project_id] = $data; return $data; } @@ -267,9 +267,9 @@ public static function projectConstraints(string $project_id) if (empty($auth = self::apiAuth())) { return false; } - $endpoint = '/api/v1/project/ec-europa/' . $project_id . '-reference/information/constraints'; - $response = self::get(self::url() . $endpoint, $auth); - $data = json_decode($response, true); + $project_id = "$project_id-reference"; + $endpoint = "api/v1/project/ec-europa/$project_id/information/constraints"; + $data = self::getWithMockFallback(self::url() . '/' . $endpoint, $auth); if (empty($data) || !isset($data['constraints'])) { return false; } @@ -294,13 +294,58 @@ public static function requirements() if (empty($auth = self::apiAuth())) { return false; } - $response = self::get(self::url() . '/api/v1/toolkit-requirements', $auth); + $data = self::getWithMockFallback(self::url() . '/api/v1/toolkit-requirements', $auth); + $GLOBALS['requirements'] = $data; + return $data; + } + + /** + * Returns the packages reviews from the endpoint. + */ + public static function packages() + { + if (empty($auth = self::apiAuth())) { + return false; + } + $data = self::getWithMockFallback(self::url() . '/api/v1/package-reviews?version=8.x', $auth); + return empty($data) ? false : $data; + } + + /** + * Returns content from given endpoint and fallback to mock if possible. + * + * This should only be executed on CI. + * + * @param string $url + * The QA endpoint url. + * @param AuthorizationInterface|null $auth + * The authorization instance or null. + */ + public static function getWithMockFallback(string $url, AuthorizationInterface $auth = null) + { + try { + $response = self::get($url, $auth); + } catch (\Exception) { + $response = ''; + } + + // If the request fails, try the mock if we are on CI. + if (empty($response) && Mock::download()) { + // Remove the base url from the endpoint. + $endpoint = str_replace(self::url() . '/', '', $url); + // Replace any project_id in the url. + $endpoint = preg_replace('#/[a-zA-Z\-]+-reference/#', '/toolkit/', $endpoint); + // Remove any query string from the url. + if (str_contains($endpoint, '?')) { + $endpoint = strstr($endpoint, '?', true); + } + $response = Mock::getEndpointContent($endpoint); + } if (empty($response)) { return false; } - $data = json_decode($response, true); - $GLOBALS['requirements'] = $data; - return $data; + + return json_decode($response, true); } } diff --git a/tests/AbstractTest.php b/tests/AbstractTest.php index eb813d14b..801df0240 100644 --- a/tests/AbstractTest.php +++ b/tests/AbstractTest.php @@ -5,7 +5,6 @@ namespace EcEuropa\Toolkit\Tests; use EcEuropa\Toolkit\TaskRunner\Runner; -use EcEuropa\Toolkit\Website; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Input\StringInput; use Symfony\Component\Console\Output\BufferedOutput; @@ -43,8 +42,6 @@ protected function setUp(): void $this->fs->mkdir($this->getSandboxRoot()); } $this->fs->chmod($this->getSandboxRoot(), 0777, umask(), true); - - self::setUpMock(); } /** @@ -292,17 +289,6 @@ protected function getClassName(): string return (string) end($class); } - /** - * Set up the mock server. - * - * To access the mock directly in the browser, make sure the port is exposed in the docker-compose.yml - * file and access for example: http://localhost:8080/tests/mock/api/v1/package-reviews. - */ - public static function setUpMock() - { - Website::setUrl(self::getMockBaseUrl() . '/tests/mock'); - } - /** * Return the mock base url. * diff --git a/tests/Unit/MockTest.php b/tests/Unit/MockTest.php deleted file mode 100644 index 5e95ad705..000000000 --- a/tests/Unit/MockTest.php +++ /dev/null @@ -1,90 +0,0 @@ -call(AbstractTest::getMockBaseUrl() . $endpoint); - - $this->assertEquals($code, $result['code']); - - $this->assertNotEmpty($result['response']); - } - - /** - * Test mock set up. - */ - public function testSetUpMock() - { - $initial_url = Website::url(); - - AbstractTest::setUpMock(); - - $new_url = Website::url(); - - $this->assertNotEquals($initial_url, $new_url); - - $this->assertEquals($new_url, AbstractTest::getMockBaseUrl() . '/tests/mock'); - } - - /** - * Make a curl request. - * - * @param $url - * The url to request. - * - * @return array - * An array keyed with code and response. - * - * @throws \Exception - * If the request fails. - */ - private function call($url) - { - $curl = curl_init($url); - curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); - $result = curl_exec($curl); - if ($result === false) { - throw new \Exception(sprintf('Curl request to endpoint "%s" failed.', $url)); - } - curl_exec($curl); - $code = (string) curl_getinfo($curl, CURLINFO_HTTP_CODE); - curl_close($curl); - return ['code' => $code, 'response' => $result]; - } - -} diff --git a/tests/fixtures/commands/build.yml b/tests/fixtures/commands/build.yml index 6d4751ad5..cb387f090 100644 --- a/tests/fixtures/commands/build.yml +++ b/tests/fixtures/commands/build.yml @@ -22,7 +22,7 @@ ->stopOnFail() ->exec('find dist -maxdepth 1 ! -name "dist" ! -name "vendor" -exec rm -rf {} +') [Simulator] Simulating File\Write('dist/manifest.json') - ->text('{"drupal_profile":"minimal","project_id":null,"drupal_ ... .0","sha":"aBcDeF"}') + ->text('{"drupal_profile":"minimal","project_id":"toolkit","dr ... .0","sha":"aBcDeF"}') [Simulator] Simulating File\Write('dist/web/VERSION.txt') ->text('1.0.0') [Simulator] Simulating ExecStack() diff --git a/tests/fixtures/commands/component-check.yml b/tests/fixtures/commands/component-check.yml index 0200afcb8..3e696d7f5 100644 --- a/tests/fixtures/commands/component-check.yml +++ b/tests/fixtures/commands/component-check.yml @@ -13,15 +13,11 @@ > Website not installed, using config/sync/core.extension.yml file. > Config file not found at config/sync/core.extension.yml. Package dropsolid_purge is mandatory and is not present on the project. - Package redirect is mandatory and is not present on the project. Package oe_dashboard_agent is mandatory and is not present on the project. Checking Recommended components. ================================ - Package drupal/redis is recommended but is not present on the project. - > See the list of recommended packages at - https://digit-dqa.fpfis.tech.ec.europa.eu/requirements. > This step is in reporting mode, skipping. Checking Insecure components. @@ -46,14 +42,7 @@ ====================================== The use of drupal/codesnippet:1.8 is restricted. Contact QA Team. - Package drupal/core:9.4.11 has not been reviewed by QA. - Package drupal/core-composer-scaffold:9.4.11 has not been reviewed by QA. - Package drupal/gin:3.0-beta5 has not been reviewed by QA. The use of drupal/github_connect:2.0.0-alpha1 is restricted. Contact QA Team. - Package drupal/purge_drush:3.4 has not been reviewed by QA. - Package drupal/purge_processor_cron:3.4 has not been reviewed by QA. - Package drupal/purge_processor_lateruntime:3.4 has not been reviewed by QA. - Package drupal/purge_queuer_coretags:3.4 has not been reviewed by QA. The use of drupal/responsive_tables_filter:1.17 is restricted. Contact QA Team. The use of drupal/restui:1.21 is rejected. Contact QA Team. @@ -75,9 +64,9 @@ Results: ======== - --------------------------------- ----------- + --------------------------------- -------- Mandatory module check failed - Recommended module check 1 warning + Recommended module check passed Insecure module check passed Outdated module check passed Abandoned module check passed @@ -85,7 +74,7 @@ Evaluation module check failed Dev module in require-dev check passed Drush require section check passed - --------------------------------- ----------- + --------------------------------- -------- [ERROR] Failed the components check, please verify the report and update the project. @@ -117,11 +106,9 @@ ! ! check: false - - command: 'toolkit:component-check' configuration: toolkit: - project_id: digit-qa components: outdated: check: false @@ -132,118 +119,12 @@ - from: sample-composer.lock to: composer.lock expectations: - - contains: | - Checking Mandatory components. - ============================== - - [Simulator] Running ./vendor/bin/drush status --format=json - > Website not installed, using config/sync/core.extension.yml file. - > Config file not found at config/sync/core.extension.yml. - Package dropsolid_purge is mandatory and is not present on the project. - Package redirect is mandatory and is not present on the project. - Package oe_dashboard_agent is mandatory and is not present on the project. - - Checking Recommended components. - ================================ - - Package drupal/redis is recommended but is not present on the project. - > See the list of recommended packages at - https://digit-dqa.fpfis.tech.ec.europa.eu/requirements. - > This step is in reporting mode, skipping. - - Checking Insecure components. - ============================= - - [Simulator] Running ./vendor/bin/drush pm:security --format=json - [Simulator] Running composer audit --no-dev --locked --no-scripts --format=json - > Insecure components check passed. - - Checking Outdated components. - ============================= - - [Simulator] Running composer outdated --no-dev --locked --direct --minor-only --no-scripts --format=json - > Outdated components check passed. - - Checking Abandoned components. - ============================== - - > Abandoned components check passed. - - Checking evaluation status components. - ====================================== - - Package drupal/core:9.4.11 has not been reviewed by QA. - Package drupal/core-composer-scaffold:9.4.11 has not been reviewed by QA. - Package drupal/gin:3.0-beta5 has not been reviewed by QA. - Package drupal/purge_drush:3.4 has not been reviewed by QA. - Package drupal/purge_processor_cron:3.4 has not been reviewed by QA. - Package drupal/purge_processor_lateruntime:3.4 has not been reviewed by QA. - Package drupal/purge_queuer_coretags:3.4 has not been reviewed by QA. - - Checking dev components. - ======================== - - > Dev components check passed. - - Checking dev components in require section. - =========================================== - - > Dev components in require section check passed - - Checking require section for Drush. - =================================== - - > Drush require section check passed. - - Results: - ======== - - --------------------------------- ------------------- - Mandatory module check failed - Recommended module check 1 warning - Insecure module check passed - Outdated module check passed (Skipping) - Abandoned module check passed (Skipping) - Dev module check passed - Evaluation module check failed - Dev module in require-dev check passed - Drush require section check passed - --------------------------------- ------------------- - - [ERROR] Failed the components check, please verify the report and update the - project. - - See the list of packages at - - https://digit-dqa.fpfis.tech.ec.europa.eu/package-reviews. - - ! [NOTE] It is possible to bypass the insecure, outdated and abandoned check: - ! - ! - Using commit message to skip Insecure and/or Outdated check: - ! - ! - Include in the message: [SKIP-INSECURE] and/or [SKIP-OUTDATED] - ! - ! - ! - ! - Using the configuration in the runner.yml.dist as shown below to - ! skip Outdated or Abandoned: - ! - ! toolkit: - ! - ! components: - ! - ! outdated: - ! - ! check: false - ! - ! abandoned: - ! - ! check: false + - string_contains: Abandoned module check passed (Skipping) + - string_contains: Outdated module check passed (Skipping) - command: 'toolkit:component-check --test-command' configuration: toolkit: - project_id: digit-qa components: outdated: check: false @@ -252,118 +133,12 @@ - from: sample-composer.lock to: composer.lock expectations: - - contains: | - Checking Mandatory components. - ============================== - - [Simulator] Running ./vendor/bin/drush status --format=json - > Website not installed, using config/sync/core.extension.yml file. - > Config file not found at config/sync/core.extension.yml. - Package dropsolid_purge is mandatory and is not present on the project. - Package redirect is mandatory and is not present on the project. - Package oe_dashboard_agent is mandatory and is not present on the project. - - Checking Recommended components. - ================================ - - Package drupal/monolog is recommended but is not present on the project. - Package drupal/redis is recommended but is not present on the project. - Package drupal/seckit is recommended but is not present on the project. - Package drush/drush is recommended but is not present on the project. - > See the list of recommended packages at - https://digit-dqa.fpfis.tech.ec.europa.eu/requirements. - > This step is in reporting mode, skipping. - - Checking Insecure components. - ============================= - - [Simulator] Running ./vendor/bin/drush pm:security --format=json - [Simulator] Running composer audit --no-dev --locked --no-scripts --format=json - > Insecure components check passed. - - Checking Outdated components. - ============================= - - [Simulator] Running composer outdated --no-dev --locked --direct --minor-only --no-scripts --format=json - > Outdated components check passed. - - Checking Abandoned components. - ============================== - - > Abandoned components check passed. - - Checking evaluation status components. - ====================================== - - Package drupal/unreviewed:1.0 has not been reviewed by QA. - The use of drupal/devel:1.0 is rejected. Contact QA Team. - Package drupal/xmlsitemap:1.0-alpha1 does not meet the whitelist version constraint: ^1.0-alpha3. - The use of drupal/active_facet_pills:1.0 is restricted. Contact QA Team. - - Checking dev components. - ======================== - - Package drupal/views_bulk_operations:dev-1.x cannot be used in dev version. - - Checking dev components in require section. - =========================================== - - > Dev components in require section check passed - - Checking require section for Drush. - =================================== - - > Drush require section check passed. - - Results: - ======== - - --------------------------------- ------------------- - Mandatory module check failed - Recommended module check 4 warnings - Insecure module check passed (Skipping) - Outdated module check passed (Skipping) - Abandoned module check passed - Dev module check failed - Evaluation module check failed - Dev module in require-dev check passed - Drush require section check passed - --------------------------------- ------------------- - - [ERROR] Failed the components check, please verify the report and update the - project. - - See the list of packages at - - https://digit-dqa.fpfis.tech.ec.europa.eu/package-reviews. - - ! [NOTE] It is possible to bypass the insecure, outdated and abandoned check: - ! - ! - Using commit message to skip Insecure and/or Outdated check: - ! - ! - Include in the message: [SKIP-INSECURE] and/or [SKIP-OUTDATED] - ! - ! - ! - ! - Using the configuration in the runner.yml.dist as shown below to - ! skip Outdated or Abandoned: - ! - ! toolkit: - ! - ! components: - ! - ! outdated: - ! - ! check: false - ! - ! abandoned: - ! - ! check: false + - string_contains: Insecure module check passed (Skipping) + - string_contains: Outdated module check passed (Skipping) - command: 'toolkit:component-check' configuration: toolkit: - project_id: digit-qa clean: config_file: core.extensions-good.yml tokens: '' @@ -373,107 +148,12 @@ - from: sample-composer.lock to: composer.lock expectations: - - contains: | - Checking Mandatory components. - ============================== - - [Simulator] Running ./vendor/bin/drush status --format=json - > Website not installed, using core.extensions-good.yml file. - > Mandatory components check passed. - - Checking Recommended components. - ================================ - - Package drupal/redis is recommended but is not present on the project. - > See the list of recommended packages at - https://digit-dqa.fpfis.tech.ec.europa.eu/requirements. - > This step is in reporting mode, skipping. - - Checking Insecure components. - ============================= - - [Simulator] Running ./vendor/bin/drush pm:security --format=json - [Simulator] Running composer audit --no-dev --locked --no-scripts --format=json - > Insecure components check passed. - - Checking Outdated components. - ============================= - - [Simulator] Running composer outdated --no-dev --locked --direct --minor-only --no-scripts --format=json - > Outdated components check passed. - - Checking Abandoned components. - ============================== - - > Abandoned components check passed. - - Checking evaluation status components. - ====================================== - - Package drupal/core:9.4.11 has not been reviewed by QA. - Package drupal/core-composer-scaffold:9.4.11 has not been reviewed by QA. - Package drupal/gin:3.0-beta5 has not been reviewed by QA. - Package drupal/purge_drush:3.4 has not been reviewed by QA. - Package drupal/purge_processor_cron:3.4 has not been reviewed by QA. - Package drupal/purge_processor_lateruntime:3.4 has not been reviewed by QA. - Package drupal/purge_queuer_coretags:3.4 has not been reviewed by QA. - - Checking dev components. - ======================== - - > Dev components check passed. - - Checking dev components in require section. - =========================================== - - > Dev components in require section check passed - - Checking require section for Drush. - =================================== - - > Drush require section check passed. - - Results: - ======== - - --------------------------------- ----------- - Mandatory module check passed - Recommended module check 1 warning - Insecure module check passed - Outdated module check passed - Abandoned module check passed - Dev module check passed - Evaluation module check failed - Dev module in require-dev check passed - Drush require section check passed - --------------------------------- ----------- - - [ERROR] Failed the components check, please verify the report and update the - project. - - See the list of packages at - - https://digit-dqa.fpfis.tech.ec.europa.eu/package-reviews. - - ! [NOTE] It is possible to bypass the insecure, outdated and abandoned check: - ! - ! - Using commit message to skip Insecure and/or Outdated check: - ! - ! - Include in the message: [SKIP-INSECURE] and/or [SKIP-OUTDATED] - ! - ! - ! - ! - Using the configuration in the runner.yml.dist as shown below to - ! skip Outdated or Abandoned: - ! - ! toolkit: - ! - ! components: - ! - ! outdated: - ! - ! check: false - ! - ! abandoned: - ! - ! check: false + - string_contains: Mandatory module check passed + - string_contains: Recommended module check passed + - string_contains: Insecure module check passed + - string_contains: Outdated module check passed + - string_contains: Abandoned module check passed + - string_contains: Dev module check passed + - string_contains: Evaluation module check failed + - string_contains: Dev module in require-dev check passed + - string_contains: Drush require section check passed diff --git a/tests/fixtures/commands/docker.yml b/tests/fixtures/commands/docker.yml index ebabbcde2..2a87d35c8 100644 --- a/tests/fixtures/commands/docker.yml +++ b/tests/fixtures/commands/docker.yml @@ -1,13 +1,14 @@ - command: 'docker:refresh-configuration' - configuration: [] + configuration: + toolkit: + project_id: resources: [] expectations: - contains: The configuration toolkit.project_id value is not valid. - command: 'docker:refresh-configuration' configuration: - toolkit: - project_id: digit-qa + toolkit: [] resources: [] expectations: - contains: | @@ -18,8 +19,7 @@ - command: 'docker:refresh-configuration' configuration: - toolkit: - project_id: digit-qa + toolkit: [] resources: - from: 'sample-docker-default.yml' to: 'docker-compose.yml' @@ -33,8 +33,7 @@ - command: 'docker:refresh-configuration' configuration: - toolkit: - project_id: digit-qa + toolkit: [] resources: - from: 'sample-docker-default.yml' to: 'docker-compose.yml' @@ -50,8 +49,7 @@ - command: 'docker:refresh-configuration' configuration: - toolkit: - project_id: digit-qa + toolkit: [] resources: - from: 'sample-docker-default.yml' to: 'docker-compose.yml' diff --git a/tests/fixtures/commands/tool.yml b/tests/fixtures/commands/tool.yml index f766e4bd2..e577ba888 100644 --- a/tests/fixtures/commands/tool.yml +++ b/tests/fixtures/commands/tool.yml @@ -80,14 +80,10 @@ configuration: [] resources: [] expectations: - - contains: | - > Checking Toolkit version: - - [WARNING] Failed to get Toolkit version from composer.lock. - - Minimum version: ^9.6 - Current version: 9.13.0 - Version check: OK + - string_contains: "[WARNING] Failed to get Toolkit version from composer.lock." + - string_contains: "Minimum version: ^9" + - string_contains: "Current version: 9" + - string_contains: "Version check: OK" - command: toolkit:check-version configuration: [] @@ -95,85 +91,38 @@ - from: sample-composer.lock to: composer.lock expectations: - - contains: | - > Checking Toolkit version: - - Minimum version: ^9.6 - Current version: 9.13.0 - Version check: OK + - string_contains: "Minimum version: ^9" + - string_contains: "Current version: 9" + - string_contains: "Version check: OK" - command: toolkit:vendor-list configuration: [] resources: [] expectations: - - contains: | - Vendors being monitored: - ======================== - - drupal - vlucas + - string_contains: behat + - string_contains: drupal + - string_contains: phpunit + - string_contains: vlucas - command: toolkit:code-review configuration: [] resources: [] expectations: - - contains: | - [Simulator] Simulating Exec('./vendor/bin/run') - ->arg('toolkit:test-phpcs') - [Simulator] Running ./vendor/bin/run 'toolkit:test-phpcs' - - - [Simulator] Simulating Exec('./vendor/bin/run') - ->arg('toolkit:opts-review') - [Simulator] Running ./vendor/bin/run 'toolkit:opts-review' - - - [Simulator] Simulating Exec('./vendor/bin/run') - ->arg('toolkit:lint-php') - [Simulator] Running ./vendor/bin/run 'toolkit:lint-php' - - - [Simulator] Simulating Exec('./vendor/bin/run') - ->arg('toolkit:lint-yaml') - [Simulator] Running ./vendor/bin/run 'toolkit:lint-yaml' - - - [Simulator] Simulating Exec('./vendor/bin/run') - ->arg('toolkit:test-phpstan') - [Simulator] Running ./vendor/bin/run 'toolkit:test-phpstan' - - - Results: - ======== - - ------------- -------- - PHPcs passed - Opts review passed - Lint PHP passed - Lint YAML passed - PHPStan passed - ------------- -------- + - string_contains: PHPcs passed + - string_contains: Opts review passed + - string_contains: Lint PHP passed + - string_contains: Lint YAML passed + - string_contains: PHPStan passed - command: toolkit:code-review --phpcs configuration: [] resources: [] expectations: - - contains: | - [Simulator] Simulating Exec('./vendor/bin/run') - ->arg('toolkit:test-phpcs') - [Simulator] Running ./vendor/bin/run 'toolkit:test-phpcs' - - - Results: - ======== - - ------------- -------- - PHPcs passed - Opts review skip - Lint PHP skip - Lint YAML skip - PHPStan skip - ------------- -------- + - string_contains: PHPcs passed + - string_contains: Opts review skip + - string_contains: Lint PHP skip + - string_contains: Lint YAML skip + - string_contains: PHPStan skip - command: toolkit:install-dependencies configuration: [] diff --git a/tests/fixtures/samples/sample-composer-toolkit-in-require.lock b/tests/fixtures/samples/sample-composer-toolkit-in-require.lock index 64af5ce51..3a3825de3 100644 --- a/tests/fixtures/samples/sample-composer-toolkit-in-require.lock +++ b/tests/fixtures/samples/sample-composer-toolkit-in-require.lock @@ -8,7 +8,7 @@ "packages": [ { "name": "ec-europa/toolkit", - "version": "9.1.0", + "version": "9.11.0", "source": { "type": "git", "url": "https://github.com/ec-europa/toolkit.git", @@ -72,7 +72,7 @@ }, { "name": "drupal/core", - "version": "9.4.11", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core.git", @@ -239,7 +239,7 @@ }, { "name": "drupal/core-composer-scaffold", - "version": "9.4.11", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", diff --git a/tests/fixtures/samples/sample-composer-toolkit-outdated.lock b/tests/fixtures/samples/sample-composer-toolkit-outdated.lock index 372621ce1..541316c86 100644 --- a/tests/fixtures/samples/sample-composer-toolkit-outdated.lock +++ b/tests/fixtures/samples/sample-composer-toolkit-outdated.lock @@ -8,7 +8,7 @@ "packages": [ { "name": "drupal/core", - "version": "9.4.11", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core.git", @@ -227,7 +227,7 @@ "packages-dev": [ { "name": "ec-europa/toolkit", - "version": "9.1.0", + "version": "9.10.0", "source": { "type": "git", "url": "https://github.com/ec-europa/toolkit.git", diff --git a/tests/fixtures/samples/sample-composer.lock b/tests/fixtures/samples/sample-composer.lock index 10af676cc..88f4d6ec0 100644 --- a/tests/fixtures/samples/sample-composer.lock +++ b/tests/fixtures/samples/sample-composer.lock @@ -2378,7 +2378,7 @@ }, { "name": "drupal/autologout", - "version": "1.4.0", + "version": "4.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/autologout.git", @@ -3283,7 +3283,7 @@ }, { "name": "drupal/core", - "version": "9.4.11", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core.git", @@ -3450,7 +3450,7 @@ }, { "name": "drupal/core-composer-scaffold", - "version": "9.4.11", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -15195,7 +15195,7 @@ }, { "name": "drupal/core-dev", - "version": "9.4.11", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", @@ -15594,7 +15594,7 @@ }, { "name": "ec-europa/toolkit", - "version": "9.7.0", + "version": "9.11.0", "source": { "type": "git", "url": "https://github.com/ec-europa/toolkit.git", diff --git a/tests/mock/api/v1/.htaccess b/tests/mock/api/v1/.htaccess deleted file mode 100644 index 74285637e..000000000 --- a/tests/mock/api/v1/.htaccess +++ /dev/null @@ -1,3 +0,0 @@ -RewriteEngine On -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule ^([^\.]+)$ $1.php [NC,L] diff --git a/tests/mock/api/v1/forbidden-permissions.php b/tests/mock/api/v1/forbidden-permissions.php deleted file mode 100644 index e1217df83..000000000 --- a/tests/mock/api/v1/forbidden-permissions.php +++ /dev/null @@ -1,11 +0,0 @@ -=1.19 <2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3208", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_effects", - "name": "drupal/image_effects", - "full_name": "drupal/image_effects", - "version_drupal": "8.x-3.1", - "version": "^2.3|^3.1", - "whitelist": "^2.3|^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5404", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_library_widget", - "name": "drupal/image_library_widget", - "full_name": "drupal/image_library_widget", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10881", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imagemagick", - "name": "drupal/imagemagick", - "full_name": "drupal/imagemagick", - "version_drupal": "8.x-3.1", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2383", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_widget_crop", - "name": "drupal/image_widget_crop", - "full_name": "drupal/image_widget_crop", - "version_drupal": "8.x-2.3", - "version": "^2.2|^2.3", - "whitelist": "^2.2|^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4945", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imce", - "name": "drupal/imce", - "full_name": "drupal/imce", - "version_drupal": "8.x-2.2", - "version": "^2.2|^3.0.1|^3.0.3", - "whitelist": "^2.2|^3.0.1|^3.0.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurojust,digit-efsa,cnect-ecsel,empl-sfc,eurojust-extranet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2466", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imce_rename_plugin", - "name": "drupal/imce_rename_plugin", - "full_name": "drupal/imce_rename_plugin", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4871", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "inline_entity_form", - "name": "drupal/inline_entity_form", - "full_name": "drupal/inline_entity_form", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "557", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "inline_responsive_images", - "name": "drupal/inline_responsive_images", - "full_name": "drupal/inline_responsive_images", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22365", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "instawidget", - "name": "drupal/instawidget", - "full_name": "drupal/instawidget", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5937", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "integration_couchdb", - "name": "drupal/integration_couchdb", - "full_name": "drupal/integration_couchdb", - "version_drupal": "dcadb1ea483cbdaa7f476f7e0e8530873f484616", - "version": "dcadb1ea483cbdaa7f476f7e0e8530873f484616", - "whitelist": "dcadb1ea483cbdaa7f476f7e0e8530873f484616", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "232", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ip_anon", - "name": "drupal/ip_anon", - "full_name": "drupal/ip_anon", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2458", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui", - "name": "drupal/jquery_ui", - "full_name": "drupal/jquery_ui", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4165", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_accordion", - "name": "drupal/jquery_ui_accordion", - "full_name": "drupal/jquery_ui_accordion", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4171", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_datepicker", - "name": "drupal/jquery_ui_datepicker", - "full_name": "drupal/jquery_ui_datepicker", - "version_drupal": "8.x-1.1", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2953", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_draggable", - "name": "drupal/jquery_ui_draggable", - "full_name": "drupal/jquery_ui_draggable", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5414", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_droppable", - "name": "drupal/jquery_ui_droppable", - "full_name": "drupal/jquery_ui_droppable", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5420", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_effects", - "name": "drupal/jquery_ui_effects", - "full_name": "drupal/jquery_ui_effects", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8430", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_slider", - "name": "drupal/jquery_ui_slider", - "full_name": "drupal/jquery_ui_slider", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4772", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_tabs", - "name": "drupal/jquery_ui_tabs", - "full_name": "drupal/jquery_ui_tabs", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5650", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_tooltip", - "name": "drupal/jquery_ui_tooltip", - "full_name": "drupal/jquery_ui_tooltip", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5061", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_touch_punch", - "name": "drupal/jquery_ui_touch_punch", - "full_name": "drupal/jquery_ui_touch_punch", - "version_drupal": "8.x-1.0.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4773", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jsonapi_extras", - "name": "drupal/jsonapi_extras", - "full_name": "drupal/jsonapi_extras", - "version_drupal": "8.x-3.17", - "version": "^3.17", - "whitelist": "^3.17", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4553", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jsonapi_resources ", - "name": "drupal/jsonapi_resources ", - "full_name": "drupal/jsonapi_resources ", - "version_drupal": "8.x-1.0.-beta4", - "version": "^1.0.-beta4", - "whitelist": "^1.0.-beta4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "35883", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "json_field", - "name": "drupal/json_field", - "full_name": "drupal/json_field", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.0-rc3||^1.0-rc4||^1.1", - "whitelist": "^1.0-rc3||^1.0-rc4||^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2409", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jwt", - "name": "drupal/jwt", - "full_name": "drupal/jwt", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ecfin-investeu", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4481", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "key", - "name": "drupal/key", - "full_name": "drupal/key", - "version_drupal": "8.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2346", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "key_auth", - "name": "drupal/key_auth", - "full_name": "drupal/key_auth", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "scic-kci-d8,scic-sr,dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "18351", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "kpi_analytics", - "name": "drupal/kpi_analytics", - "full_name": "drupal/kpi_analytics", - "version_drupal": "8.x-1.0-alpha8", - "version": "^1.0-alpha8", - "whitelist": "^1.0-alpha8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8253", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "label_length_limit", - "name": "drupal/label_length_limit", - "full_name": "drupal/label_length_limit", - "version_drupal": "8.x-2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4517", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lang_dropdown", - "name": "drupal/lang_dropdown", - "full_name": "drupal/lang_dropdown", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "28660", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "language_cookie", - "name": "drupal/language_cookie", - "full_name": "drupal/language_cookie", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2384", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "languagefield", - "name": "drupal/languagefield", - "full_name": "drupal/languagefield", - "version_drupal": "8.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5416", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "language_selection_page", - "name": "drupal/language_selection_page", - "full_name": "drupal/language_selection_page", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "558", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_at", - "name": "drupal/layout_builder_at", - "full_name": "drupal/layout_builder_at", - "version_drupal": "8.x-2.12", - "version": "^2.12", - "whitelist": "^2.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10688", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_block", - "name": "drupal/layout_builder_block", - "full_name": "drupal/layout_builder_block", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11322", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_component_attributes", - "name": "drupal/layout_builder_component_attributes", - "full_name": "drupal/layout_builder_component_attributes", - "version_drupal": "2.0.0", - "version": "^1.2 || ^2", - "whitelist": "^1.2 || ^2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11323", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_lock", - "name": "drupal/layout_builder_lock", - "full_name": "drupal/layout_builder_lock", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13901", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_restrictions", - "name": "drupal/layout_builder_restrictions", - "full_name": "drupal/layout_builder_restrictions", - "version_drupal": "8.x-2.9", - "version": "^2.9", - "whitelist": "^2.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6625", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_options", - "name": "drupal/layout_options", - "full_name": "drupal/layout_options", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa,efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4583", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lazy", - "name": "drupal/lazy", - "full_name": "drupal/lazy", - "version_drupal": "8.x-3.9", - "version": "^2.0|^3.9", - "whitelist": "^2.0|^3.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5405", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet", - "name": "drupal/leaflet", - "full_name": "drupal/leaflet", - "version_drupal": "8.x-2.1.14", - "version": "^2.1.14", - "whitelist": "^2.1.14", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-ati", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5961", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet_more_maps", - "name": "drupal/leaflet_more_maps", - "full_name": "drupal/leaflet_more_maps", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6834", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "legal", - "name": "drupal/legal", - "full_name": "drupal/legal", - "version_drupal": "2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2948", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "libraries", - "name": "drupal/libraries", - "full_name": "drupal/libraries", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0-beta1", - "whitelist": "^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7118", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "like_and_dislike", - "name": "drupal/like_and_dislike", - "full_name": "drupal/like_and_dislike", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-alpha2|^1.0-beta2", - "whitelist": "^1.0-alpha2|^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5406", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_attributes", - "name": "drupal/link_attributes", - "full_name": "drupal/link_attributes", - "version_drupal": "8.x-1.9", - "version": "^1.9", - "whitelist": "^1.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "589", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkchecker", - "name": "drupal/linkchecker", - "full_name": "drupal/linkchecker", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2452", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_class", - "name": "drupal/link_class", - "full_name": "drupal/link_class", - "version_drupal": "8.x-2.0.0", - "version": "^1.5|^2.0.0", - "whitelist": "^1.5|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5962", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_css", - "name": "drupal/link_css", - "full_name": "drupal/link_css", - "version_drupal": "8.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5412", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_description", - "name": "drupal/link_description", - "full_name": "drupal/link_description", - "version_drupal": "1.0.x-beta2", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "19541", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linked_field", - "name": "drupal/linked_field", - "full_name": "drupal/linked_field", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-ecsel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6929", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_field_autocomplete_filter", - "name": "drupal/link_field_autocomplete_filter", - "full_name": "drupal/link_field_autocomplete_filter", - "version_drupal": "8.x-1.14", - "version": "^1.14", - "whitelist": "^1.14", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6371", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkit", - "name": "drupal/linkit", - "full_name": "drupal/linkit", - "version_drupal": "8.x-6.0.0-beta2", - "version": "^5.0@beta|^6.0@beta|^4.3", - "whitelist": "^5.0@beta|^6.0@beta|^4.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "559", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkit_media_library", - "name": "drupal/linkit_media_library", - "full_name": "drupal/linkit_media_library", - "version_drupal": "1.0.2", - "version": "^1.0.2", - "whitelist": "^1.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10121", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_redirect_per_role", - "name": "drupal/login_redirect_per_role", - "full_name": "drupal/login_redirect_per_role", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-ati,dgt-jt3,just-ejustice, grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "7119", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_security", - "name": "drupal/login_security", - "full_name": "drupal/login_security", - "version_drupal": "8.x-1.5", - "version": "^1.5||^2.0", - "whitelist": "^1.5||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2454", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_tracker", - "name": "drupal/login_tracker", - "full_name": "drupal/login_tracker", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8254", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mailchimp", - "name": "drupal/mailchimp", - "full_name": "drupal/mailchimp", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2385", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "maillog", - "name": "drupal/maillog", - "full_name": "drupal/maillog", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4140", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_login", - "name": "drupal/mail_login", - "full_name": "drupal/mail_login", - "version_drupal": "8.x-2.4", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4784", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_safety", - "name": "drupal/mail_safety", - "full_name": "drupal/mail_safety", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mailsystem", - "name": "drupal/mailsystem", - "full_name": "drupal/mailsystem", - "version_drupal": "8.x-4.2", - "version": "^4.2", - "whitelist": "^4.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2372", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "markdown", - "name": "drupal/markdown", - "full_name": "drupal/markdown", - "version_drupal": "8.x-1.3", - "version": "^1.3||^3.0", - "whitelist": "^1.3||^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2342", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "markup", - "name": "drupal/markup", - "full_name": "drupal/markup", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-esep", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "28787", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mask", - "name": "drupal/mask", - "full_name": "drupal/mask", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2|^2.0.0-alpha1", - "whitelist": "^1.0-alpha2|^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3356", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "masquerade", - "name": "drupal/masquerade", - "full_name": "drupal/masquerade", - "version_drupal": "8.x-2.0-beta4", - "version": "^2.0-beta4", - "whitelist": "^2.0-beta4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5964", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "matomo", - "name": "drupal/matomo", - "full_name": "drupal/matomo", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3361", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "matomo_reporting_api", - "name": "drupal/matomo_reporting_api", - "full_name": "drupal/matomo_reporting_api", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10882", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "maxlength", - "name": "drupal/maxlength", - "full_name": "drupal/maxlength", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0-rc1||^2.0.0-rc1", - "whitelist": "^1.0-rc1||^2.0.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "560", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_avportal", - "name": "drupal/media_avportal", - "full_name": "drupal/media_avportal", - "version_drupal": "8.x-1.0-beta11", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "561", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_bulk_upload", - "name": "drupal/media_bulk_upload", - "full_name": "drupal/media_bulk_upload", - "version_drupal": "8.x-1.0-alpha27", - "version": "^1.0-alpha27||^3.0.0", - "whitelist": "^1.0-alpha27||^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2873", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_directories", - "name": "drupal/media_directories", - "full_name": "drupal/media_directories", - "version_drupal": "8.x-2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4957", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity", - "name": "drupal/media_entity", - "full_name": "drupal/media_entity", - "version_drupal": "8.x-2.0-beta5", - "version": "^2.0-beta5", - "whitelist": "^2.0-beta5", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2386", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_browser", - "name": "drupal/media_entity_browser", - "full_name": "drupal/media_entity_browser", - "version_drupal": "8.x-2.0-alpha3 ", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2972", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_document", - "name": "drupal/media_entity_document", - "full_name": "drupal/media_entity_document", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2387", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_download", - "name": "drupal/media_entity_download", - "full_name": "drupal/media_entity_download", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-eurydice-d8,eacea-youthwiki,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "27155", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_file_replace", - "name": "drupal/media_entity_file_replace", - "full_name": "drupal/media_entity_file_replace", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3457", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_image", - "name": "drupal/media_entity_image", - "full_name": "drupal/media_entity_image", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2388", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_instagram", - "name": "drupal/media_entity_instagram", - "full_name": "drupal/media_entity_instagram", - "version_drupal": "3.0.5", - "version": "^3.0.5", - "whitelist": "^3.0.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10268", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_slideshow", - "name": "drupal/media_entity_slideshow", - "full_name": "drupal/media_entity_slideshow", - "version_drupal": "8.x-2.4", - "version": "^2.4", - "whitelist": "^2.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-ecsel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6928", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_soundcloud", - "name": "drupal/media_entity_soundcloud", - "full_name": "drupal/media_entity_soundcloud", - "version_drupal": "8.x-2.0|8.x-3.0.0", - "version": "^2.0|^3.0.0", - "whitelist": "^2.0|^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4755", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_library_edit", - "name": "drupal/media_library_edit", - "full_name": "drupal/media_library_edit", - "version_drupal": "8.x-1.0|8.x-2.0", - "version": "^1.0|^2.0|^3.0.1", - "whitelist": "^1.0|^2.0|^3.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2438", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_migration", - "name": "drupal/media_migration", - "full_name": "drupal/media_migration", - "version_drupal": "8.x-1.0-alpha11", - "version": "^1.0-alpha11", - "whitelist": "^1.0-alpha11", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8,ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6841", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_parent_entity_link", - "name": "drupal/media_parent_entity_link", - "full_name": "drupal/media_parent_entity_link", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4548", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_pdf_thumbnail", - "name": "drupal/media_pdf_thumbnail", - "full_name": "drupal/media_pdf_thumbnail", - "version_drupal": "8.x-5.0-beta6", - "version": "^5.0-beta6", - "whitelist": "^5.0-beta6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurojust", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "12044", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_revisions_ui", - "name": "drupal/media_revisions_ui", - "full_name": "drupal/media_revisions_ui", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4563", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_thumbnails_pdf", - "name": "drupal/media_thumbnails_pdf", - "full_name": "drupal/media_thumbnails_pdf", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "empl-eures-extranet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11638", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "memcache", - "name": "drupal/memcache", - "full_name": "drupal/memcache", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2373", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mentions", - "name": "drupal/mentions", - "full_name": "drupal/mentions", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3653", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_admin_per_menu", - "name": "drupal/menu_admin_per_menu", - "full_name": "drupal/menu_admin_per_menu", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4515", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_block", - "name": "drupal/menu_block", - "full_name": "drupal/menu_block", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2374", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_breadcrumb", - "name": "drupal/menu_breadcrumb", - "full_name": "drupal/menu_breadcrumb", - "version_drupal": "8.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2375", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_export", - "name": "drupal/menu_export", - "full_name": "drupal/menu_export", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2480", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_item_extras", - "name": "drupal/menu_item_extras", - "full_name": "drupal/menu_item_extras", - "version_drupal": "8.x-2.10", - "version": "^2.10", - "whitelist": "^2.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2344", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_item_role_access", - "name": "drupal/menu_item_role_access", - "full_name": "drupal/menu_item_role_access", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4522", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_link_attributes", - "name": "drupal/menu_link_attributes", - "full_name": "drupal/menu_link_attributes", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_link_destination", - "name": "drupal/menu_link_destination", - "full_name": "drupal/menu_link_destination", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10883", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_per_role", - "name": "drupal/menu_per_role", - "full_name": "drupal/menu_per_role", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4833", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_position", - "name": "drupal/menu_position", - "full_name": "drupal/menu_position", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2389", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_token", - "name": "drupal/menu_token", - "full_name": "drupal/menu_token", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6844", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_trail_by_path", - "name": "drupal/menu_trail_by_path", - "full_name": "drupal/menu_trail_by_path", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5392", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "merge_translations", - "name": "drupal/merge_translations", - "full_name": "drupal/merge_translations", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2447", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message", - "name": "drupal/message", - "full_name": "drupal/message", - "version_drupal": "8.x-1.2", - "version": "^1.0|^1.2", - "whitelist": "^1.0|^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-esep,cnect-futurium,eacea-epale,cnect-dsjp,intpa-c4dev,ener-scmcs,digit-opensocial-pilot,jrc-opensocial-e4c,dg-cnect-cybersecurity-atlas,jrc-k4p,joinup,digit-joinup,just-ejtp,fpi-euvp,intpa-capacity4dev,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "3352", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_digest", - "name": "drupal/message_digest", - "full_name": "drupal/message_digest", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.0-rc3|^1.2", - "whitelist": "^1.0-rc3|^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-epale,cnect-dsjp,intpa-c4dev,cnect-futurium,eacea-esep,jrc-k4p,joinup,digit-joinup,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3353", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_notify", - "name": "drupal/message_notify", - "full_name": "drupal/message_notify", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3012", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_subscribe", - "name": "drupal/message_subscribe", - "full_name": "drupal/message_subscribe", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-epale,cnect-dsjp,cnect-futurium,eacea-esep,jrc-k4p,joinup,digit-joinup,just-ejtp,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3225", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_ui", - "name": "drupal/message_ui", - "full_name": "drupal/message_ui", - "version_drupal": "8.x-1.0-beta4", - "version": "^1.0-beta4", - "whitelist": "^1.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2957", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "meta_entity", - "name": "drupal/meta_entity", - "full_name": "drupal/meta_entity", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10884", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "metatag", - "name": "drupal/metatag", - "full_name": "drupal/metatag", - "version_drupal": "8.x-1.16", - "version": "^1.11|^1.16", - "whitelist": "^1.11|^1.16", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "588", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "metatag_routes", - "name": "drupal/metatag_routes", - "full_name": "drupal/metatag_routes", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-ecif,secgen-ecip", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "20942", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migmag", - "name": "drupal/migmag", - "full_name": "drupal/migmag", - "version_drupal": "1.7.0", - "version": "^1.7.0", - "whitelist": "^1.7.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14653", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_devel", - "name": "drupal/migrate_devel", - "full_name": "drupal/migrate_devel", - "version_drupal": "8.x-2.0-alpha2", - "version": "^8.x-2.0-alpha2", - "whitelist": "^8.x-2.0-alpha2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6607", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_file", - "name": "drupal/migrate_file", - "full_name": "drupal/migrate_file", - "version_drupal": "8.x-1.1|8.x-2.0.0", - "version": "^1.1|^2.0.0", - "whitelist": "^1.1|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4482", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_file_to_media", - "name": "drupal/migrate_file_to_media", - "full_name": "drupal/migrate_file_to_media", - "version_drupal": "2.0.7", - "version": "^2.0.7", - "whitelist": "^2.0.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8,ewrc-d8,edps-edps", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6610", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_manifest", - "name": "drupal/migrate_manifest", - "full_name": "drupal/migrate_manifest", - "version_drupal": "8.x-1.9", - "version": "^1.9||^2.0", - "whitelist": "^1.9||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2279", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_media_handler", - "name": "drupal/migrate_media_handler", - "full_name": "drupal/migrate_media_handler", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8,ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6617", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_plus", - "name": "drupal/migrate_plus", - "full_name": "drupal/migrate_plus", - "version_drupal": "8.x-4.2||8.x-5.1||6.0.0", - "version": "^4.2||^5.1||^6.0.0", - "whitelist": "^4.2||^5.1||^6.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "579", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_skip_on_404", - "name": "drupal/migrate_skip_on_404", - "full_name": "drupal/migrate_skip_on_404", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7448", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_source_csv", - "name": "drupal/migrate_source_csv", - "full_name": "drupal/migrate_source_csv", - "version_drupal": "8.x-3.4", - "version": "^3.4", - "whitelist": "^3.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2390", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_source_directory", - "name": "drupal/migrate_source_directory", - "full_name": "drupal/migrate_source_directory", - "version_drupal": "8.x-1.0", - "version": "^1.0||^2.0.0", - "whitelist": "^1.0||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4204", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_source_graphql", - "name": "drupal/migrate_source_graphql", - "full_name": "drupal/migrate_source_graphql", - "version_drupal": "2.0.0-beta2", - "version": "^2.0.0-beta2", - "whitelist": "^2.0.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13875", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_tools", - "name": "drupal/migrate_tools", - "full_name": "drupal/migrate_tools", - "version_drupal": "8.x-4.5||8.x-5.0||6.0.0", - "version": "^4.5||^5.0||^6.0.0", - "whitelist": "^4.5||^5.0||^6.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "578", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_upgrade", - "name": "drupal/migrate_upgrade", - "full_name": "drupal/migrate_upgrade", - "version_drupal": "4.0.0", - "version": "^3.2||^4.0.0", - "whitelist": "^3.2||^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "5098", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mimemail", - "name": "drupal/mimemail", - "full_name": "drupal/mimemail", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10742", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "minifyhtml", - "name": "drupal/minifyhtml", - "full_name": "drupal/minifyhtml", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "21242", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "miniorange_saml", - "name": "drupal/miniorange_saml", - "full_name": "drupal/miniorange_saml", - "version_drupal": "8.x-2.26", - "version": "^2.26", - "whitelist": "^2.26", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-esma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "23649", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "moderated_content_bulk_publish", - "name": "drupal/moderated_content_bulk_publish", - "full_name": "drupal/moderated_content_bulk_publish", - "version_drupal": "2.0.11", - "version": "^2.0.11", - "whitelist": "^2.0.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22371", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "moderation_dashboard", - "name": "drupal/moderation_dashboard", - "full_name": "drupal/moderation_dashboard", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7121", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "module_filter", - "name": "drupal/module_filter", - "full_name": "drupal/module_filter", - "version_drupal": "8.x-3.1", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3167", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "monolog", - "name": "drupal/monolog", - "full_name": "drupal/monolog", - "version_drupal": "8.x-1.3", - "version": "^1.3|^2.0.0-beta2|3.0.0-beta1", - "whitelist": "^1.3|^2.0.0-beta2|3.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "recommended", - "nid": "2459", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multivalue_form_element", - "name": "drupal/multivalue_form_element", - "full_name": "drupal/multivalue_form_element", - "version_drupal": "8.x-1.0.0-beta1", - "version": "^1.0.0-beta1", - "whitelist": "^1.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4449", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "neutral_paths", - "name": "drupal/neutral_paths", - "full_name": "drupal/neutral_paths", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "603", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeaccess", - "name": "drupal/nodeaccess", - "full_name": "drupal/nodeaccess", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_access_grants", - "name": "drupal/node_access_grants", - "full_name": "drupal/node_access_grants", - "version_drupal": "8.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6114", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_class", - "name": "drupal/node_class", - "full_name": "drupal/node_class", - "version_drupal": "2.0.0", - "version": "^1.0-beta1||^2.0.0", - "whitelist": "^1.0-beta1||^2.0.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "chafea-fm", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "599", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_edit_protection", - "name": "drupal/node_edit_protection", - "full_name": "drupal/node_edit_protection", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4843", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_read_time", - "name": "drupal/node_read_time", - "full_name": "drupal/node_read_time", - "version_drupal": "8.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "35875", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_revision_delete", - "name": "drupal/node_revision_delete", - "full_name": "drupal/node_revision_delete", - "version_drupal": "8.x-1.0-rc2", - "version": "^1.0-rc2", - "whitelist": "^1.0-rc2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2451", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeviewcount", - "name": "drupal/nodeviewcount", - "full_name": "drupal/nodeviewcount", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "epso-epsosite", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "16139", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_view_permissions", - "name": "drupal/node_view_permissions", - "full_name": "drupal/node_view_permissions", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2347", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "noreqnewpass", - "name": "drupal/noreqnewpass", - "full_name": "drupal/noreqnewpass", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "16254", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "o365", - "name": "drupal/o365", - "full_name": "drupal/o365", - "version_drupal": "8.x-2.0.4", - "version": "^1.0-beta5 || ^2.0.4", - "whitelist": "^1.0-beta5 || ^2.0.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8255", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oauth2_client", - "name": "drupal/oauth2_client", - "full_name": "drupal/oauth2_client", - "version_drupal": "8.x-3.0-beta1", - "version": "^2.0-beta4 || ^3.0-beta1", - "whitelist": "^2.0-beta4 || ^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8256", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oembed_providers", - "name": "drupal/oembed_providers", - "full_name": "drupal/oembed_providers", - "version_drupal": "1.1.5", - "version": "^1.1.5||^2.0", - "whitelist": "^1.1.5||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8454", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og", - "name": "drupal/og", - "full_name": "drupal/og", - "version_drupal": "8.x-1.0-alpha7", - "version": "^1.0-alpha7||dev-neutral-access-result", - "whitelist": "^1.0-alpha7||dev-neutral-access-result", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10893", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_menu", - "name": "drupal/og_menu", - "full_name": "drupal/og_menu", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4||^2.0.0", - "whitelist": "^1.0-alpha4||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10885", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "onomasticon", - "name": "drupal/onomasticon", - "full_name": "drupal/onomasticon", - "version_drupal": "8.x-2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4560", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi", - "name": "drupal/openapi", - "full_name": "drupal/openapi", - "version_drupal": "8.x-1.0-beta7|8.x-2.0-rc3", - "version": "1.0-beta7|2.0-rc3|2.0", - "whitelist": "1.0-beta7|2.0-rc3|2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4751", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi_jsonapi", - "name": "drupal/openapi_jsonapi", - "full_name": "drupal/openapi_jsonapi", - "version_drupal": "3.0.2", - "version": "^3.0.2", - "whitelist": "^3.0.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25618", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi_ui", - "name": "drupal/openapi_ui", - "full_name": "drupal/openapi_ui", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.0-rc3", - "whitelist": "^1.0-rc3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25630", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi_ui_swagger", - "name": "drupal/openapi_ui_swagger", - "full_name": "drupal/openapi_ui_swagger", - "version_drupal": "8.x-1.0-rc4", - "version": "^1.0-rc4", - "whitelist": "^1.0-rc4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4754", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "optional_end_date", - "name": "drupal/optional_end_date", - "full_name": "drupal/optional_end_date", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "575", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "override_node_options", - "name": "drupal/override_node_options", - "full_name": "drupal/override_node_options", - "version_drupal": "8.x-2.6", - "version": "^2.4|^2.6", - "whitelist": "^2.4|^2.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4913", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "page_load_progress", - "name": "drupal/page_load_progress", - "full_name": "drupal/page_load_progress", - "version_drupal": "2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22782", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "page_manager", - "name": "drupal/page_manager", - "full_name": "drupal/page_manager", - "version_drupal": "8.x-4.0-beta4", - "version": "^4.0-beta4", - "whitelist": "^4.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2275", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panelbutton", - "name": "drupal/panelbutton", - "full_name": "drupal/panelbutton", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4873", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panelizer", - "name": "drupal/panelizer", - "full_name": "drupal/panelizer", - "version_drupal": "8.x-4.4", - "version": "^4.4", - "whitelist": "^4.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5421", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels", - "name": "drupal/panels", - "full_name": "drupal/panels", - "version_drupal": "8.x-4.6", - "version": "^4.6", - "whitelist": "^4.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3672", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraph_blocks", - "name": "drupal/paragraph_blocks", - "full_name": "drupal/paragraph_blocks", - "version_drupal": "8.x-3.0.0", - "version": "^3.0.0", - "whitelist": "^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5100", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs", - "name": "drupal/paragraphs", - "full_name": "drupal/paragraphs", - "version_drupal": "8.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "562", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_collection", - "name": "drupal/paragraphs_collection", - "full_name": "drupal/paragraphs_collection", - "version_drupal": "8.x-1.0-alpha8", - "version": "^1.0-alpha8", - "whitelist": "^1.0-alpha8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7164", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_edit", - "name": "drupal/paragraphs_edit", - "full_name": "drupal/paragraphs_edit", - "version_drupal": "8.x-2.0-beta1", - "version": "^2.0-beta1", - "whitelist": "^2.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17786", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_jquery_ui_accordion", - "name": "drupal/paragraphs_jquery_ui_accordion", - "full_name": "drupal/paragraphs_jquery_ui_accordion", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10886", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_limits", - "name": "drupal/paragraphs_limits", - "full_name": "drupal/paragraphs_limits", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-srb, rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8376", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraph_view_mode", - "name": "drupal/paragraph_view_mode", - "full_name": "drupal/paragraph_view_mode", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3762", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "password_policy", - "name": "drupal/password_policy", - "full_name": "drupal/password_policy", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0-beta1", - "whitelist": "^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2455", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathauto", - "name": "drupal/pathauto", - "full_name": "drupal/pathauto", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "563", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathologic", - "name": "drupal/pathologic", - "full_name": "drupal/pathologic", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2 ", - "whitelist": "^1.0-alpha2 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5424", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pcp", - "name": "drupal/pcp", - "full_name": "drupal/pcp", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7850", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf", - "name": "drupal/pdf", - "full_name": "drupal/pdf", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eeas-eeas-d8,eurofound,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "13591", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_api", - "name": "drupal/pdf_api", - "full_name": "drupal/pdf_api", - "version_drupal": "8x-2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": "<2.0", - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "", - "nid": "3210", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdfpreview", - "name": "drupal/pdfpreview", - "full_name": "drupal/pdfpreview", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2465", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_reader", - "name": "drupal/pdf_reader", - "full_name": "drupal/pdf_reader", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eeas-eeas-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "10120", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_using_mpdf", - "name": "drupal/pdf_using_mpdf", - "full_name": "drupal/pdf_using_mpdf", - "version_drupal": "8.x-2.2", - "version": "^1.0|^2.2", - "whitelist": "^1.0|^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3209", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pendo", - "name": "drupal/pendo", - "full_name": "drupal/pendo", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "permissions_filter", - "name": "drupal/permissions_filter", - "full_name": "drupal/permissions_filter", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2299", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pipeline", - "name": "drupal/pipeline", - "full_name": "drupal/pipeline", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10889", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "poll", - "name": "drupal/poll", - "full_name": "drupal/poll", - "version_drupal": "8.x-1.5", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2391", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "prepopulate", - "name": "drupal/prepopulate", - "full_name": "drupal/prepopulate", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurofound", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "18669", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "preserve_changed", - "name": "drupal/preserve_changed", - "full_name": "drupal/preserve_changed", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "jrc-k4p", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2484", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "printable", - "name": "drupal/printable", - "full_name": "drupal/printable", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2956", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_content", - "name": "drupal/private_content", - "full_name": "drupal/private_content", - "version_drupal": "8.x-2.0-rc3", - "version": "^2.0-rc3", - "whitelist": "^2.0-rc3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "23819", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_files_download_permission", - "name": "drupal/private_files_download_permission", - "full_name": "drupal/private_files_download_permission", - "version_drupal": "3.0.4", - "version": "^3.0.4", - "whitelist": "^3.0.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11927", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_message", - "name": "drupal/private_message", - "full_name": "drupal/private_message", - "version_drupal": "8.x-2.0-beta16", - "version": "^1.2|^1.3|^2.0-beta16", - "whitelist": "^1.2|^1.3|^2.0-beta16", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "fpi-euvp,euvp,cnect-dsjp,eacea-esep,ener-scmcs,digit-opensocial-pilot,jrc-opensocial-e4c,jrc-k4p,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2951", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_message_flood", - "name": "drupal/private_message_flood", - "full_name": "drupal/private_message_flood", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eacea-esep", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5651", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "profile", - "name": "drupal/profile", - "full_name": "drupal/profile", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4077", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "profile_switcher", - "name": "drupal/profile_switcher", - "full_name": "drupal/profile_switcher", - "version_drupal": "8.x-1.0-alpha5", - "version": "^1.0-alpha5", - "whitelist": "^1.0-alpha5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "edps-edpb,edps-edps,just-ejtp,digit-oesa,digit-oec,digit-oe,just-ejustice,ema-ema", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9955", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "protected_forms", - "name": "drupal/protected_forms", - "full_name": "drupal/protected_forms", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-ecif", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "34584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "publication_date", - "name": "drupal/publication_date", - "full_name": "drupal/publication_date", - "version_drupal": "8.x-2.0-beta2", - "version": "^2.0-beta2", - "whitelist": "^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4523", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge", - "name": "drupal/purge", - "full_name": "drupal/purge", - "version_drupal": "8.x-3.0-beta9", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2418", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_control", - "name": "drupal/purge_control", - "full_name": "drupal/purge_control", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10643", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_everything_queuer", - "name": "drupal/purge_everything_queuer", - "full_name": "drupal/purge_everything_queuer", - "version_drupal": "1.1.0", - "version": "^1.1.0", - "whitelist": "^1.1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-esep", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "34619", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_queues", - "name": "drupal/purge_queues", - "full_name": "drupal/purge_queues", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "34579", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_users", - "name": "drupal/purge_users", - "full_name": "drupal/purge_users", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,digit-oesa,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8754", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "questions_answers", - "name": "drupal/questions_answers", - "full_name": "drupal/questions_answers", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4520", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "queue_mail", - "name": "drupal/queue_mail", - "full_name": "drupal/queue_mail", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9944", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "queue_ui", - "name": "drupal/queue_ui", - "full_name": "drupal/queue_ui", - "version_drupal": "8.x-2.0", - "version": "^2.0||^3.1", - "whitelist": "^2.0||^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2348", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quick_node_clone", - "name": "drupal/quick_node_clone", - "full_name": "drupal/quick_node_clone", - "version_drupal": "8.x-1.14", - "version": "^1.15", - "whitelist": "^1.15", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17791", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quicktabs", - "name": "drupal/quicktabs", - "full_name": "drupal/quicktabs", - "version_drupal": "8.x-3.0-alpha2", - "version": "^3.0-alpha2", - "whitelist": "^3.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2500", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quiz", - "name": "drupal/quiz", - "full_name": "drupal/quiz", - "version_drupal": "6.0.0-alpha6", - "version": "^6.0.0-alpha4", - "whitelist": "^6.0.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17134", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "r4032login", - "name": "drupal/r4032login", - "full_name": "drupal/r4032login", - "version_drupal": "8.x-2.0.0", - "version": "^1.1|^2.0.0", - "whitelist": "^1.1|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2350", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rabbit_hole", - "name": "drupal/rabbit_hole", - "full_name": "drupal/rabbit_hole", - "version_drupal": "8.x-1.0-beta10", - "version": "^1.0-beta7", - "whitelist": "^1.0-beta7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2392", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "radioactivity", - "name": "drupal/radioactivity", - "full_name": "drupal/radioactivity", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0-beta1", - "whitelist": "^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "rtd-rai", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6468", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "range", - "name": "drupal/range", - "full_name": "drupal/range", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17137", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rate", - "name": "drupal/rate", - "full_name": "drupal/rate", - "version_drupal": "3.0.1", - "version": "^3.0.1", - "whitelist": "^3.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-epale,rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x,10.x", - "usage": "Free", - "nid": "2949", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rdf_entity", - "name": "drupal/rdf_entity", - "full_name": "drupal/rdf_entity", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1||^2.0.0-alpha1", - "whitelist": "^1.0-alpha1||^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "564", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rdf_meta_entity", - "name": "drupal/rdf_meta_entity", - "full_name": "drupal/rdf_meta_entity", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "16839", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "readmore", - "name": "drupal/readmore", - "full_name": "drupal/readmore", - "version_drupal": "2.0.0-alpha1", - "version": "^2.0.0-alpha1", - "whitelist": "^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "25394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "real_aes", - "name": "drupal/real_aes", - "full_name": "drupal/real_aes", - "version_drupal": "8.x-2.3", - "version": "^2.3||^2.4", - "whitelist": "^2.3||^2.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8252", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "realname", - "name": "drupal/realname", - "full_name": "drupal/realname", - "version_drupal": "2.0.0-beta1", - "version": "^2.0.0-beta1", - "whitelist": "^2.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "27690", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rebuild_cache_access", - "name": "drupal/rebuild_cache_access", - "full_name": "drupal/rebuild_cache_access", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2487", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recaptcha", - "name": "drupal/recaptcha", - "full_name": "drupal/recaptcha", - "version_drupal": "8.x-3.0", - "version": "^2.5 || ^3.0", - "whitelist": "^2.5 || ^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4916", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recaptcha_v3", - "name": "drupal/recaptcha_v3", - "full_name": "drupal/recaptcha_v3", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2546", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recently_read", - "name": "drupal/recently_read", - "full_name": "drupal/recently_read", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14803", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recreate_block_content", - "name": "drupal/recreate_block_content", - "full_name": "drupal/recreate_block_content", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "chafea-mtfe", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5974", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redirect", - "name": "drupal/redirect", - "full_name": "drupal/redirect", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "1", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "565", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redirect_after_login", - "name": "drupal/redirect_after_login", - "full_name": "drupal/redirect_after_login", - "version_drupal": "8.x-2.6", - "version": "^2.6 ", - "whitelist": "^2.6 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3168", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redis", - "name": "drupal/redis", - "full_name": "drupal/redis", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "recommended", - "nid": "2376", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "registration", - "name": "drupal/registration", - "full_name": "drupal/registration", - "version_drupal": "3.0.0-beta1", - "version": "^3.0.0-beta1", - "whitelist": "^3.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-esma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "35827", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remote_stream_wrapper", - "name": "drupal/remote_stream_wrapper", - "full_name": "drupal/remote_stream_wrapper", - "version_drupal": "8.x-1.3", - "version": "^1.5||^2.0", - "whitelist": "^1.5||^2.0", - "blacklist": false, - "secure": "1.6", - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "566", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remove_http_headers", - "name": "drupal/remove_http_headers", - "full_name": "drupal/remove_http_headers", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5623", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate", - "name": "drupal/replicate", - "full_name": "drupal/replicate", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3169", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate_ui", - "name": "drupal/replicate_ui", - "full_name": "drupal/replicate_ui", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7165", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "reroute_email", - "name": "drupal/reroute_email", - "full_name": "drupal/reroute_email", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4168", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_background_image", - "name": "drupal/responsive_background_image", - "full_name": "drupal/responsive_background_image", - "version_drupal": "2.0.0-beta0", - "version": "^2.0.0-beta0", - "whitelist": "^2.0.0-beta0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x", - "usage": "Free", - "nid": "4094", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_tables_filter", - "name": "drupal/responsive_tables_filter", - "full_name": "drupal/responsive_tables_filter", - "version_drupal": "8.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-qa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8554", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "restrict_ip", - "name": "drupal/restrict_ip", - "full_name": "drupal/restrict_ip", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8258", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "restui", - "name": "drupal/restui", - "full_name": "drupal/restui", - "version_drupal": "8.x-1.17", - "version": "^1.17", - "whitelist": "^1.17", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "digit-qa,eacea-epale", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "1950", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rest_views", - "name": "drupal/rest_views", - "full_name": "drupal/rest_views", - "version_drupal": "8.x-2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6466", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "robotstxt", - "name": "drupal/robotstxt", - "full_name": "drupal/robotstxt", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5456", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "roleassign", - "name": "drupal/roleassign", - "full_name": "drupal/roleassign", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "567", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_delegation", - "name": "drupal/role_delegation", - "full_name": "drupal/role_delegation", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2393", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_expose", - "name": "drupal/role_expose", - "full_name": "drupal/role_expose", - "version_drupal": "2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13910", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules", - "name": "drupal/rules", - "full_name": "drupal/rules", - "version_drupal": "8.x-3.0-alpha5", - "version": "^3.0-alpha5", - "whitelist": "^3.0-alpha5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2442", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules_token", - "name": "drupal/rules_token", - "full_name": "drupal/rules_token", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2476", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "salesforce", - "name": "drupal/salesforce", - "full_name": "drupal/salesforce", - "version_drupal": "5.0.0", - "version": "^5.0.0", - "whitelist": "^5.0.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x", - "usage": "Free", - "nid": "23312", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "samlauth", - "name": "drupal/samlauth", - "full_name": "drupal/samlauth", - "version_drupal": "8.x-3.0-rc2", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4568", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduled_delete", - "name": "drupal/scheduled_delete", - "full_name": "drupal/scheduled_delete", - "version_drupal": "8.x-1.3", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2519", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduler", - "name": "drupal/scheduler", - "full_name": "drupal/scheduler", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2377", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduler_content_moderation_integration", - "name": "drupal/scheduler_content_moderation_integration", - "full_name": "drupal/scheduler_content_moderation_integration", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2395", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_digital_document", - "name": "drupal/schema_digital_document", - "full_name": "drupal/schema_digital_document", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10890", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_metatag", - "name": "drupal/schema_metatag", - "full_name": "drupal/schema_metatag", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4561", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_social_media_posting", - "name": "drupal/schema_social_media_posting", - "full_name": "drupal/schema_social_media_posting", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10888", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schemata", - "name": "drupal/schemata", - "full_name": "drupal/schemata", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25619", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scrollup", - "name": "drupal/scrollup", - "full_name": "drupal/scrollup", - "version_drupal": "3.0.0", - "version": "^3.0.0", - "whitelist": "^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13123", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api", - "name": "drupal/search_api", - "full_name": "drupal/search_api", - "version_drupal": "8.x-1.14", - "version": "1.13 || ^1.14", - "whitelist": "1.13 || ^1.14", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "607", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_attachments", - "name": "drupal/search_api_attachments", - "full_name": "drupal/search_api_attachments", - "version_drupal": "8.x-1.0-beta15", - "version": "^1.0-beta18||^9.0", - "whitelist": "^1.0-beta18||^9.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_autocomplete", - "name": "drupal/search_api_autocomplete", - "full_name": "drupal/search_api_autocomplete", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "608", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_exclude_entity", - "name": "drupal/search_api_exclude_entity", - "full_name": "drupal/search_api_exclude_entity", - "version_drupal": "8.x-1.3", - "version": "^1.0 || ^1.3", - "whitelist": "^1.0 || ^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7848", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_glossary", - "name": "drupal/search_api_glossary", - "full_name": "drupal/search_api_glossary", - "version_drupal": "8.x-4.1", - "version": "^4.1", - "whitelist": "^4.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11167", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_location", - "name": "drupal/search_api_location", - "full_name": "drupal/search_api_location", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7107", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_page", - "name": "drupal/search_api_page", - "full_name": "drupal/search_api_page", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-ecsel,empl-sfc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6927", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_solr", - "name": "drupal/search_api_solr", - "full_name": "drupal/search_api_solr", - "version_drupal": " 8.x-4.1.11", - "version": "2.2 || ^3.9 || ^4.1.11", - "whitelist": "2.2 || ^3.9 || ^4.1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4684", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_sorts", - "name": "drupal/search_api_sorts", - "full_name": "drupal/search_api_sorts", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4565", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_sorts_widget", - "name": "drupal/search_api_sorts_widget", - "full_name": "drupal/search_api_sorts_widget", - "version_drupal": "1.0.0-beta3", - "version": "^1.0.0-beta3", - "whitelist": "^1.0.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9009", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_spellcheck", - "name": "drupal/search_api_spellcheck", - "full_name": "drupal/search_api_spellcheck", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0@beta|^4.0.0", - "whitelist": "^3.0@beta|^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4683", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "seckit", - "name": "drupal/seckit", - "full_name": "drupal/seckit", - "version_drupal": "8.x-1.2", - "version": "^1.2|^2.0.0", - "whitelist": "^1.2|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "recommended", - "nid": "2453", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select2", - "name": "drupal/select2", - "full_name": "drupal/select2", - "version_drupal": "8.x-1.8", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2543", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select2_all", - "name": "drupal/select2_all", - "full_name": "drupal/select2_all", - "version_drupal": "8.x-1.0-alpha6", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ema, ema-upd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2544", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "selective_better_exposed_filters", - "name": "drupal/selective_better_exposed_filters", - "full_name": "drupal/selective_better_exposed_filters", - "version_drupal": "8.x-2.0-beta6", - "version": "^2.0-beta6", - "whitelist": "^2.0-beta6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22362", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select_or_other", - "name": "drupal/select_or_other", - "full_name": "drupal/select_or_other", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4||^4.0.0", - "whitelist": "^1.0-alpha4||^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4095", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select_translation", - "name": "drupal/select_translation", - "full_name": "drupal/select_translation", - "version_drupal": "8.x-1.0", - "version": "^1.0|^2.0.0-alpha1", - "whitelist": "^1.0|^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4562", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sendinblue", - "name": "drupal/sendinblue", - "full_name": "drupal/sendinblue", - "version_drupal": "8.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4917", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "seo_checklist", - "name": "drupal/seo_checklist", - "full_name": "drupal/seo_checklist", - "version_drupal": "8.x-4.1", - "version": "^4.0", - "whitelist": "^4.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2512", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "serial", - "name": "drupal/serial", - "full_name": "drupal/serial", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9445", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shariff", - "name": "drupal/shariff", - "full_name": "drupal/shariff", - "version_drupal": "8.x-1.7", - "version": "^1.5|^1.7", - "whitelist": "^1.5|^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5407", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shield", - "name": "drupal/shield", - "full_name": "drupal/shield", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "587", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shortcode", - "name": "drupal/shortcode", - "full_name": "drupal/shortcode", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "27265", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "show_email", - "name": "drupal/show_email", - "full_name": "drupal/show_email", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "25699", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shs", - "name": "drupal/shs", - "full_name": "drupal/shs", - "version_drupal": "2.0.0-rc3", - "version": "^1.0-alpha5|^2.0.0-rc2", - "whitelist": "^1.0-alpha5|^2.0.0-rc2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4609", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_block", - "name": "drupal/simple_block", - "full_name": "drupal/simple_block", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2321", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_glossary", - "name": "drupal/simple_glossary", - "full_name": "drupal/simple_glossary", - "version_drupal": "8.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2274", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_menu_permissions", - "name": "drupal/simple_menu_permissions", - "full_name": "drupal/simple_menu_permissions", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "19967", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews", - "name": "drupal/simplenews", - "full_name": "drupal/simplenews", - "version_drupal": "8.x-2.0-beta", - "version": "1.0-beta2 || ^2.0-beta || ^3.0.0-beta1", - "whitelist": "1.0-beta2 || ^2.0-beta || ^3.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2925", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews_stats", - "name": "drupal/simplenews_stats", - "full_name": "drupal/simplenews_stats", - "version_drupal": "3.0.0-beta3", - "version": "^3.0.0-beta3", - "whitelist": "^3.0.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "28661", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_oauth", - "name": "drupal/simple_oauth", - "full_name": "drupal/simple_oauth", - "version_drupal": "5.2.0", - "version": "^5.0||^6.0.0-alpha1", - "whitelist": "^5.0||^6.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4838", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_oauth_fallback_header", - "name": "drupal/simple_oauth_fallback_header", - "full_name": "drupal/simple_oauth_fallback_header", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eacea-epale", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8089", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_popup_blocks", - "name": "drupal/simple_popup_blocks", - "full_name": "drupal/simple_popup_blocks", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2958", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_responsive_table", - "name": "drupal/simple_responsive_table", - "full_name": "drupal/simple_responsive_table", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14873", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simpler_quickedit", - "name": "drupal/simpler_quickedit", - "full_name": "drupal/simpler_quickedit", - "version_drupal": "1.0.2", - "version": "^1.0.2", - "whitelist": "^1.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "19673", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_sitemap", - "name": "drupal/simple_sitemap", - "full_name": "drupal/simple_sitemap", - "version_drupal": "8.x-3.10", - "version": "^3.11||^4.0", - "whitelist": "^3.11||^4.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4806", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_timeline", - "name": "drupal/simple_timeline", - "full_name": "drupal/simple_timeline", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11175", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplify_menu", - "name": "drupal/simplify_menu", - "full_name": "drupal/simplify_menu", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4546", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "single_datetime", - "name": "drupal/single_datetime", - "full_name": "drupal/single_datetime", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5393", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "site_alert", - "name": "drupal/site_alert", - "full_name": "drupal/site_alert", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": "<1.2", - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3550", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sitemap", - "name": "drupal/sitemap", - "full_name": "drupal/sitemap", - "version_drupal": "8.x-1.5", - "version": "^1.5|^2.0-beta2", - "whitelist": "^1.5|^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2378", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "site_verify", - "name": "drupal/site_verify", - "full_name": "drupal/site_verify", - "version_drupal": "8.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10887", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick", - "name": "drupal/slick", - "full_name": "drupal/slick", - "version_drupal": "8.x-2.1", - "version": "^2.1|1.1", - "whitelist": "^2.1|1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2435", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_entityreference", - "name": "drupal/slick_entityreference", - "full_name": "drupal/slick_entityreference", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6024", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_media", - "name": "drupal/slick_media", - "full_name": "drupal/slick_media", - "version_drupal": "8.x-2.0-alpha3", - "version": "^2.0-alpha3", - "whitelist": "^2.0-alpha3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6869", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_paragraphs", - "name": "drupal/slick_paragraphs", - "full_name": "drupal/slick_paragraphs", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2935", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_views", - "name": "drupal/slick_views", - "full_name": "drupal/slick_views", - "version_drupal": "8.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2421", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slim_select", - "name": "drupal/slim_select", - "full_name": "drupal/slim_select", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11386", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_date", - "name": "drupal/smart_date", - "full_name": "drupal/smart_date", - "version_drupal": "3.5.1", - "version": "^3.5.1", - "whitelist": "^3.5.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22510", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_ip", - "name": "drupal/smart_ip", - "full_name": "drupal/smart_ip", - "version_drupal": "8.x-4.2", - "version": "^4.2", - "whitelist": "^4.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22363", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_sql_idmap", - "name": "drupal/smart_sql_idmap", - "full_name": "drupal/smart_sql_idmap", - "version_drupal": "1.0.0-beta1", - "version": "^1.0.0-beta1", - "whitelist": "^1.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6842", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_trim", - "name": "drupal/smart_trim", - "full_name": "drupal/smart_trim", - "version_drupal": "8.x-1.2", - "version": "^1.2||^2.0.0", - "whitelist": "^1.2||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2311", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smtp", - "name": "drupal/smtp", - "full_name": "drupal/smtp", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2947", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social", - "name": "drupal/social", - "full_name": "drupal/social", - "version_drupal": "8.x-8.7", - "version": "^8.10", - "whitelist": "^8.10", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ener-scm", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2970", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_api", - "name": "drupal/social_api", - "full_name": "drupal/social_api", - "version_drupal": "8.x-3.0.0", - "version": "^1.1|^3.0.0", - "whitelist": "^1.1|^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5408", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_auth", - "name": "drupal/social_auth", - "full_name": "drupal/social_auth", - "version_drupal": "8.x-3.0.1", - "version": "^1.0|^3.0.1", - "whitelist": "^1.0|^3.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5409", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_course", - "name": "drupal/social_course", - "full_name": "drupal/social_course", - "version_drupal": "3.1.1", - "version": "^3.1.1", - "whitelist": "^3.1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8404", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_geolocation", - "name": "drupal/social_geolocation", - "full_name": "drupal/social_geolocation", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7112", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_kpi_lite", - "name": "drupal/social_kpi_lite", - "full_name": "drupal/social_kpi_lite", - "version_drupal": "8.x-1.0-alpha10", - "version": "^1.0-alpha10", - "whitelist": "^1.0-alpha10", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8257", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_media", - "name": "drupal/social_media", - "full_name": "drupal/social_media", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "600", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_media_links", - "name": "drupal/social_media_links", - "full_name": "drupal/social_media_links", - "version_drupal": "8.x-2.8", - "version": "^2.8", - "whitelist": "^2.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5997", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_node_statistics", - "name": "drupal/social_node_statistics", - "full_name": "drupal/social_node_statistics", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "opensocial,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7113", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_profile_field", - "name": "drupal/social_profile_field", - "full_name": "drupal/social_profile_field", - "version_drupal": "8.x-0.2", - "version": "^0.2", - "whitelist": "^0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5999", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_pwa", - "name": "drupal/social_pwa", - "full_name": "drupal/social_pwa", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7114", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_search_autocomplete", - "name": "drupal/social_search_autocomplete", - "full_name": "drupal/social_search_autocomplete", - "version_drupal": "1.2.1", - "version": "^1.2.1", - "whitelist": "^1.2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "opensocial,ener-scmcs,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7115", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_tour", - "name": "drupal/social_tour", - "full_name": "drupal/social_tour", - "version_drupal": "1.0.0-alpha2", - "version": "^1.0.0-alpha2", - "whitelist": "^1.0.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22348", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_wall", - "name": "drupal/social_wall", - "full_name": "drupal/social_wall", - "version_drupal": "8x-2.1.7", - "version": "^2.1.7", - "whitelist": "^2.1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2961", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sophron", - "name": "drupal/sophron", - "full_name": "drupal/sophron", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2396", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sortableviews", - "name": "drupal/sortableviews", - "full_name": "drupal/sortableviews", - "version_drupal": "8.x-1.0-beta1 ", - "version": "^1.0-beta1 ", - "whitelist": "^1.0-beta1 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5397", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "spamspan", - "name": "drupal/spamspan", - "full_name": "drupal/spamspan", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4636", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sparql_entity_storage", - "name": "drupal/sparql_entity_storage", - "full_name": "drupal/sparql_entity_storage", - "version_drupal": "8.x-1.0-alpha9", - "version": "dev-empty-module || ^1.0-alpha9 || ^10 || ^2.0-alpha1", - "whitelist": "dev-empty-module || ^1.0-alpha9 || ^10 || ^2.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6274", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stage_file_proxy", - "name": "drupal/stage_file_proxy", - "full_name": "drupal/stage_file_proxy", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5417", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "starrating", - "name": "drupal/starrating", - "full_name": "drupal/starrating", - "version_drupal": "8.x-4.0-alpha2", - "version": "^4.0-alpha2", - "whitelist": "^4.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "601", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "starrating_formdisplay", - "name": "drupal/starrating_formdisplay", - "full_name": "drupal/starrating_formdisplay", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "602", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "state_machine", - "name": "drupal/state_machine", - "full_name": "drupal/state_machine", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4781", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stop_broken_link_in_body", - "name": "drupal/stop_broken_link_in_body", - "full_name": "drupal/stop_broken_link_in_body", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "jrc-k4p", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2560", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "structure_sync", - "name": "drupal/structure_sync", - "full_name": "drupal/structure_sync", - "version_drupal": "8.x-1.16", - "version": "^1.16|^2.0", - "whitelist": "^1.16|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2449", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "styleguide", - "name": "drupal/styleguide", - "full_name": "drupal/styleguide", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2270", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "style_management", - "name": "drupal/style_management", - "full_name": "drupal/style_management", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "chafea-mtfe", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6104", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subgroup", - "name": "drupal/subgroup", - "full_name": "drupal/subgroup", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4789", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subpathauto", - "name": "drupal/subpathauto", - "full_name": "drupal/subpathauto", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "superfish", - "name": "drupal/superfish", - "full_name": "drupal/superfish", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2273", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "svg_formatter", - "name": "drupal/svg_formatter", - "full_name": "drupal/svg_formatter", - "version_drupal": "8.x-1.14", - "version": "^1.17", - "whitelist": "^1.17", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3211", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "svg_image", - "name": "drupal/svg_image", - "full_name": "drupal/svg_image", - "version_drupal": "8.x-1.16", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "586", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "swiftmailer", - "name": "drupal/swiftmailer", - "full_name": "drupal/swiftmailer", - "version_drupal": "8.x-2.0", - "version": "^1.0-beta2|^2.0", - "whitelist": "^1.0-beta2|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2397", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "symfony_mailer", - "name": "drupal/symfony_mailer", - "full_name": "drupal/symfony_mailer", - "version_drupal": "1.0.0-alpha4", - "version": "^1.0.0-alpha4|1.1.0-beta2", - "whitelist": "^1.0.0-alpha4|1.1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "12516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tablefield", - "name": "drupal/tablefield", - "full_name": "drupal/tablefield", - "version_drupal": "8.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "sfc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "18664", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tamper", - "name": "drupal/tamper", - "full_name": "drupal/tamper", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_access_fix", - "name": "drupal/taxonomy_access_fix", - "full_name": "drupal/taxonomy_access_fix", - "version_drupal": "8.x-3.1", - "version": "^2.8 || ^3.1", - "whitelist": "^2.8 || ^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7849", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_import", - "name": "drupal/taxonomy_import", - "full_name": "drupal/taxonomy_import", - "version_drupal": "2.0.11", - "version": "^2.0.11", - "whitelist": "^2.0.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "35876", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_machine_name", - "name": "drupal/taxonomy_machine_name", - "full_name": "drupal/taxonomy_machine_name", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6258", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_manager", - "name": "drupal/taxonomy_manager", - "full_name": "drupal/taxonomy_manager", - "version_drupal": "2.0.6", - "version": "^2.0.6", - "whitelist": "^2.0.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "15759", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_menu", - "name": "drupal/taxonomy_menu", - "full_name": "drupal/taxonomy_menu", - "version_drupal": "8.x-3.5", - "version": "^3.5", - "whitelist": "^3.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13592", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tb_megamenu", - "name": "drupal/tb_megamenu", - "full_name": "drupal/tb_megamenu", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4577", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_merge", - "name": "drupal/term_merge", - "full_name": "drupal/term_merge", - "version_drupal": "2.0.0-beta4", - "version": "^2.0.0-beta4", - "whitelist": "^2.0.0-beta4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-futurium", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x,10.x", - "usage": "Free", - "nid": "35196", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_reference_change", - "name": "drupal/term_reference_change", - "full_name": "drupal/term_reference_change", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-futurium", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "35199", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_reference_tree", - "name": "drupal/term_reference_tree", - "full_name": "drupal/term_reference_tree", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4564", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "terms_of_use", - "name": "drupal/terms_of_use", - "full_name": "drupal/terms_of_use", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2934", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tfa", - "name": "drupal/tfa", - "full_name": "drupal/tfa", - "version_drupal": "8.x-1.0-alpha5 ", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3011", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "theme_rule", - "name": "drupal/theme_rule", - "full_name": "drupal/theme_rule", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11324", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "time_field", - "name": "drupal/time_field", - "full_name": "drupal/time_field", - "version_drupal": "8.x-1.12", - "version": "^1.12|^2.0.0", - "whitelist": "^1.12|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "592", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt", - "name": "drupal/tmgmt", - "full_name": "drupal/tmgmt", - "version_drupal": "8.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2398", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt_cdt", - "name": "drupal/tmgmt_cdt", - "full_name": "drupal/tmgmt_cdt", - "version_drupal": "8.x-1.0-beta8", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3572", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tocbot", - "name": "drupal/tocbot", - "full_name": "drupal/tocbot", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2 ", - "whitelist": "^1.0-alpha2 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token", - "name": "drupal/token", - "full_name": "drupal/token", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "569", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_filter", - "name": "drupal/token_filter", - "full_name": "drupal/token_filter", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3812", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_language", - "name": "drupal/token_language", - "full_name": "drupal/token_language", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8425", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "toolbar_themes", - "name": "drupal/toolbar_themes", - "full_name": "drupal/toolbar_themes", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2349", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tooltip_ckeditor", - "name": "drupal/tooltip_ckeditor", - "full_name": "drupal/tooltip_ckeditor", - "version_drupal": "4.0.0", - "version": "^4.0.0", - "whitelist": "^4.0.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22275", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "total_control", - "name": "drupal/total_control", - "full_name": "drupal/total_control", - "version_drupal": "3.0.3", - "version": "^3.0.3", - "whitelist": "^3.0.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "36365", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "translatable_menu_link_uri", - "name": "drupal/translatable_menu_link_uri", - "full_name": "drupal/translatable_menu_link_uri", - "version_drupal": "8.x-1.2", - "version": "^1.2|^2.0", - "whitelist": "^1.2|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2334", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "transliterate_filenames", - "name": "drupal/transliterate_filenames", - "full_name": "drupal/transliterate_filenames", - "version_drupal": "8.x-1.5", - "version": "^1.5||^2.0", - "whitelist": "^1.5||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4960", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twig_field_value", - "name": "drupal/twig_field_value", - "full_name": "drupal/twig_field_value", - "version_drupal": "8.x-1.2|8.x-2.0.0", - "version": "^1.2|^2.0.0", - "whitelist": "^1.2|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "585", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twig_tweak", - "name": "drupal/twig_tweak", - "full_name": "drupal/twig_tweak", - "version_drupal": "8.x-2.4", - "version": "^2.4||^3.1.3||^3.2.0", - "whitelist": "^2.4||^3.1.3||^3.2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twig_vardumper", - "name": "drupal/twig_vardumper", - "full_name": "drupal/twig_vardumper", - "version_drupal": "3.0.2", - "version": "^3.0.2", - "whitelist": "^3.0.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25585", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twitter_entity", - "name": "drupal/twitter_entity", - "full_name": "drupal/twitter_entity", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6872", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "typed_data", - "name": "drupal/typed_data", - "full_name": "drupal/typed_data", - "version_drupal": "8.x-1.0-alpha5", - "version": "^1.0-alpha5", - "whitelist": "^1.0-alpha5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5652", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "typed_link", - "name": "drupal/typed_link", - "full_name": "drupal/typed_link", - "version_drupal": "8.x-1.0", - "version": "^1.0|^2.0.0", - "whitelist": "^1.0|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2414", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tzfield", - "name": "drupal/tzfield", - "full_name": "drupal/tzfield", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4129", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns", - "name": "drupal/ui_patterns", - "full_name": "drupal/ui_patterns", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "568", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns_layout_builder", - "name": "drupal/ui_patterns_layout_builder", - "full_name": "drupal/ui_patterns_layout_builder", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4588", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns_settings", - "name": "drupal/ui_patterns_settings", - "full_name": "drupal/ui_patterns_settings", - "version_drupal": "8.x-2.0-beta3", - "version": "^1.1|^2.0@beta", - "whitelist": "^1.1|^2.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4589", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns_views_style", - "name": "drupal/ui_patterns_views_style", - "full_name": "drupal/ui_patterns_views_style", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4590", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_styles", - "name": "drupal/ui_styles", - "full_name": "drupal/ui_styles", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0@RC", - "whitelist": "^1.0@RC", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4617", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ultimate_cron", - "name": "drupal/ultimate_cron", - "full_name": "drupal/ultimate_cron", - "version_drupal": "8.x-2.0-alpha4", - "version": "^2.0-alpha4", - "whitelist": "^2.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2399", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "unique_field_ajax", - "name": "drupal/unique_field_ajax", - "full_name": "drupal/unique_field_ajax", - "version_drupal": "2.1.2", - "version": "^2.1.2", - "whitelist": "^2.1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "20008", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "update_helper", - "name": "drupal/update_helper", - "full_name": "drupal/update_helper", - "version_drupal": "8.x-2.0.0", - "version": "^1.3|^2.0||^3.0", - "whitelist": "^1.3|^2.0||^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5410", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "upgrade_status", - "name": "drupal/upgrade_status", - "full_name": "drupal/upgrade_status", - "version_drupal": "8.x-3.6", - "version": "^3.6", - "whitelist": "^3.6", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5963", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "url_embed", - "name": "drupal/url_embed", - "full_name": "drupal/url_embed", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5411", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_field_anonymize", - "name": "drupal/user_field_anonymize", - "full_name": "drupal/user_field_anonymize", - "version_drupal": "8.x-1.x", - "version": "^1.x", - "whitelist": "^1.x", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "echo-ucpkn,digit-oesa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14743", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_fields_visibility", - "name": "drupal/user_fields_visibility", - "full_name": "drupal/user_fields_visibility", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "14771", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_online_status", - "name": "drupal/user_online_status", - "full_name": "drupal/user_online_status", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5653", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userprotect", - "name": "drupal/userprotect", - "full_name": "drupal/userprotect", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "24900", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_registrationpassword", - "name": "drupal/user_registrationpassword", - "full_name": "drupal/user_registrationpassword", - "version_drupal": "8.x-1.0-alpha5", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6154", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userswitch", - "name": "drupal/userswitch", - "full_name": "drupal/userswitch", - "version_drupal": "8.x-1.9 ", - "version": "^1.9 ", - "whitelist": "^1.9 ", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "4521", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "variationcache", - "name": "drupal/variationcache", - "full_name": "drupal/variationcache", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4450", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "varnish_purge", - "name": "drupal/varnish_purge", - "full_name": "drupal/varnish_purge", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-dsjp,eacea-epale,rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2494", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vbo_export", - "name": "drupal/vbo_export", - "full_name": "drupal/vbo_export", - "version_drupal": "8.x-3.2", - "version": "^3.2", - "whitelist": "^3.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4801", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "verf", - "name": "drupal/verf", - "full_name": "drupal/verf", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "fisma-edfp,grow-posta-d9, joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17792", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video", - "name": "drupal/video", - "full_name": "drupal/video", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5787", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video_embed_field", - "name": "drupal/video_embed_field", - "full_name": "drupal/video_embed_field", - "version_drupal": "8.x-2.2", - "version": "^1.6 || ^2.2", - "whitelist": "^1.6 || ^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2379", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video_embed_field_migrate", - "name": "drupal/video_embed_field_migrate", - "full_name": "drupal/video_embed_field_migrate", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13148", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_custom_table", - "name": "drupal/view_custom_table", - "full_name": "drupal/view_custom_table", - "version_drupal": "8.x-1.6", - "version": "^1.6|^2.0.0", - "whitelist": "^1.6|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11168", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_modes_display", - "name": "drupal/view_modes_display", - "full_name": "drupal/view_modes_display", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4065", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_mode_switch", - "name": "drupal/view_mode_switch", - "full_name": "drupal/view_mode_switch", - "version_drupal": "8.x-1.2", - "version": "^1.2|^2.0.1", - "whitelist": "^1.2|^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10444", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_accordion", - "name": "drupal/views_accordion", - "full_name": "drupal/views_accordion", - "version_drupal": "8.x-1.3", - "version": "^1.3|^2.0", - "whitelist": "^1.3|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "1949", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_add_button", - "name": "drupal/views_add_button", - "full_name": "drupal/views_add_button", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "1948", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_aggregator", - "name": "drupal/views_aggregator", - "full_name": "drupal/views_aggregator", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "echo-ucpkn", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "24080", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_arg_order_sort", - "name": "drupal/views_arg_order_sort", - "full_name": "drupal/views_arg_order_sort", - "version_drupal": "2.0.0-alpha1", - "version": "^2.0.0-alpha1", - "whitelist": "^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "33008", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_autocomplete_filters", - "name": "drupal/views_autocomplete_filters", - "full_name": "drupal/views_autocomplete_filters", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "889", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_autosubmit", - "name": "drupal/views_autosubmit", - "full_name": "drupal/views_autosubmit", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5097", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_block_area", - "name": "drupal/views_block_area", - "full_name": "drupal/views_block_area", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11387", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_block_filter_block", - "name": "drupal/views_block_filter_block", - "full_name": "drupal/views_block_filter_block", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4064", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_blogspot_archive", - "name": "drupal/views_blogspot_archive", - "full_name": "drupal/views_blogspot_archive", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3214", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_bulk_edit", - "name": "drupal/views_bulk_edit", - "full_name": "drupal/views_bulk_edit", - "version_drupal": "8.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4667", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_bulk_operations", - "name": "drupal/views_bulk_operations", - "full_name": "drupal/views_bulk_operations", - "version_drupal": "8.x-3.4", - "version": "^3.4|^4.0.0", - "whitelist": "^3.4|^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2319", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_cm_current_state", - "name": "drupal/views_cm_current_state", - "full_name": "drupal/views_cm_current_state", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-youthwiki", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "24268", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_conditional", - "name": "drupal/views_conditional", - "full_name": "drupal/views_conditional", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5775", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_contextual_filters_or", - "name": "drupal/views_contextual_filters_or", - "full_name": "drupal/views_contextual_filters_or", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5418", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_custom_cache_tag", - "name": "drupal/views_custom_cache_tag", - "full_name": "drupal/views_custom_cache_tag", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2400", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_database_connector", - "name": "drupal/views_database_connector", - "full_name": "drupal/views_database_connector", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3226", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export", - "name": "drupal/views_data_export", - "full_name": "drupal/views_data_export", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2485", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export_phpspreadsheet", - "name": "drupal/views_data_export_phpspreadsheet", - "full_name": "drupal/views_data_export_phpspreadsheet", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9,eiopa-ewppa-eiopa-reference", - "allowed_profiles": "ewcms", - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "19094", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_date_format_sql", - "name": "drupal/views_date_format_sql", - "full_name": "drupal/views_date_format_sql", - "version_drupal": "8.x-3.0-alpha1", - "version": "^3.0-alpha1 ", - "whitelist": "^3.0-alpha1 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5422", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_exposed_filter_blocks", - "name": "drupal/views_exposed_filter_blocks", - "full_name": "drupal/views_exposed_filter_blocks", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9351", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_field_formatter", - "name": "drupal/views_field_formatter", - "full_name": "drupal/views_field_formatter", - "version_drupal": "8.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "574", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_fieldsets", - "name": "drupal/views_fieldsets", - "full_name": "drupal/views_fieldsets", - "version_drupal": "8.x-3.3", - "version": "^3.3", - "whitelist": "^3.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3539", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_field_view", - "name": "drupal/views_field_view", - "full_name": "drupal/views_field_view", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13593", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_filters_populate", - "name": "drupal/views_filters_populate", - "full_name": "drupal/views_filters_populate", - "version_drupal": "8.x-1.1", - "version": "^1.1|^2.0", - "whitelist": "^1.1|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2301", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_flipped_table", - "name": "drupal/views_flipped_table", - "full_name": "drupal/views_flipped_table", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2406", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_infinite_scroll", - "name": "drupal/views_infinite_scroll", - "full_name": "drupal/views_infinite_scroll", - "version_drupal": "8.x-1.6", - "version": "^1.6||^2.0.0", - "whitelist": "^1.6||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2380", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_json_source", - "name": "drupal/views_json_source", - "full_name": "drupal/views_json_source", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2643", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_linkarea", - "name": "drupal/views_linkarea", - "full_name": "drupal/views_linkarea", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13073", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_multiple_permissions", - "name": "drupal/views_multiple_permissions", - "full_name": "drupal/views_multiple_permissions", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11325", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "viewsreference", - "name": "drupal/viewsreference", - "full_name": "drupal/viewsreference", - "version_drupal": "8.x-2.0-alpha4", - "version": "^1.0|^2.0-beta2", - "whitelist": "^1.0|^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "583", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_selective_filters", - "name": "drupal/views_selective_filters", - "full_name": "drupal/views_selective_filters", - "version_drupal": "8.x-1.x-dev", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "dg-cnect-cybersecurity-atlas,empl-ela", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2534", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_show_more", - "name": "drupal/views_show_more", - "full_name": "drupal/views_show_more", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4174", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_slideshow", - "name": "drupal/views_slideshow", - "full_name": "drupal/views_slideshow", - "version_drupal": "8.x-4.6", - "version": "^4.6", - "whitelist": "^4.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "888", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_table_rowspan", - "name": "drupal/views_table_rowspan", - "full_name": "drupal/views_table_rowspan", - "version_drupal": "2.0.2", - "version": "^2.0.2||^3.0.1", - "whitelist": "^2.0.2||^3.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "19051", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_templates", - "name": "drupal/views_templates", - "full_name": "drupal/views_templates", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6467", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_tree", - "name": "drupal/views_tree", - "full_name": "drupal/views_tree", - "version_drupal": "8.x-2.0-alpha1", - "version": "^2.0-alpha1", - "whitelist": "^2.0-alpha1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5096", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_url_path_arguments", - "name": "drupal/views_url_path_arguments", - "full_name": "drupal/views_url_path_arguments", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "echo-ucpkn", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "25613", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_year_filter", - "name": "drupal/views_year_filter", - "full_name": "drupal/views_year_filter", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8682", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_unpublished", - "name": "drupal/view_unpublished", - "full_name": "drupal/view_unpublished", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4905", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "virtual_keyboard", - "name": "drupal/virtual_keyboard", - "full_name": "drupal/virtual_keyboard", - "version_drupal": "2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x", - "usage": "Free", - "nid": "20439", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vote_up_down", - "name": "drupal/vote_up_down", - "full_name": "drupal/vote_up_down", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "digit-ecif, digit-pm2", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5998", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "votingapi", - "name": "drupal/votingapi", - "full_name": "drupal/votingapi", - "version_drupal": "8.x-3.0-beta2", - "version": "^3.0@beta", - "whitelist": "^3.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4668", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform", - "name": "drupal/webform", - "full_name": "drupal/webform", - "version_drupal": "8.x-5.4|8.x-6.0.2", - "version": "^5.4|^6.0.2", - "whitelist": "^5.4|^6.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "582", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_config_ignore", - "name": "drupal/webform_config_ignore", - "full_name": "drupal/webform_config_ignore", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5419", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_content_creator", - "name": "drupal/webform_content_creator", - "full_name": "drupal/webform_content_creator", - "version_drupal": "2.0.2", - "version": "^2.0.2", - "whitelist": "^2.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10130", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_mass_email", - "name": "drupal/webform_mass_email", - "full_name": "drupal/webform_mass_email", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22368", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_migrate", - "name": "drupal/webform_migrate", - "full_name": "drupal/webform_migrate", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10233", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_rest", - "name": "drupal/webform_rest", - "full_name": "drupal/webform_rest", - "version_drupal": "4.0.0", - "version": "^4.0.0", - "whitelist": "^4.0.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eacea-epale,edps-edps", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "8090", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_simplenews_handler", - "name": "drupal/webform_simplenews_handler", - "full_name": "drupal/webform_simplenews_handler", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22364", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_views", - "name": "drupal/webform_views", - "full_name": "drupal/webform_views", - "version_drupal": "8.x-5.0-alpha8", - "version": "^5.0-alpha8", - "whitelist": "^5.0-alpha8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4928", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webp", - "name": "drupal/webp", - "full_name": "drupal/webp", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurojust,digit-openeuropa-dc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5978", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "weight", - "name": "drupal/weight", - "full_name": "drupal/weight", - "version_drupal": "8.x-3.1", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2304", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "we_megamenu", - "name": "drupal/we_megamenu", - "full_name": "drupal/we_megamenu", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2937", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wkhtmltopdf", - "name": "drupal/wkhtmltopdf", - "full_name": "drupal/wkhtmltopdf", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3229", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench", - "name": "drupal/workbench", - "full_name": "drupal/workbench", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2553", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_access", - "name": "drupal/workbench_access", - "full_name": "drupal/workbench_access", - "version_drupal": "8.x-1.0-beta4", - "version": "^1.0-beta4", - "whitelist": "^1.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10067", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_email", - "name": "drupal/workbench_email", - "full_name": "drupal/workbench_email", - "version_drupal": "8.x-2.2.0", - "version": "^2.2.0", - "whitelist": "^2.2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5548", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workflow", - "name": "drupal/workflow", - "full_name": "drupal/workflow", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4847", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xls_serialization", - "name": "drupal/xls_serialization", - "full_name": "drupal/xls_serialization", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7122", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xmlsitemap", - "name": "drupal/xmlsitemap", - "full_name": "drupal/xmlsitemap", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2272", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "yaml_editor", - "name": "drupal/yaml_editor", - "full_name": "drupal/yaml_editor", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5423", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "yearonly", - "name": "drupal/yearonly", - "full_name": "drupal/yearonly", - "version_drupal": "8.x-1.3|8x-9.0.0", - "version": "^1.3|^9.0.0", - "whitelist": "^1.3|^9.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2486", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "yoast_seo", - "name": "drupal/yoast_seo", - "full_name": "drupal/yoast_seo", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8547", - "dev_component": "false" - }, - { - "type": "module", - "machine_name": "drush", - "name": "drush/drush", - "full_name": "drush/drush", - "version_drupal": "*", - "version": "*", - "whitelist": "*", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,8.x,9.x", - "usage": "recommended", - "nid": "17660", - "dev_component": "false" - }, - { - "type": "module", - "machine_name": "toolkit", - "name": "ec-europa/toolkit", - "full_name": "ec-europa/toolkit", - "version_drupal": "8.6.8", - "version": "^3.6.3|^4.8.2|^8.6.8", - "whitelist": "^3.6.3|^4.8.2|^8.6.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,8.x,9.x", - "usage": "Mandatory", - "nid": "17659", - "dev_component": "true" - }, - { - "type": "drupal-module", - "machine_name": "oe_dashboard_agent", - "name": "openeuropa/oe_dashboard_agent", - "full_name": "openeuropa/oe_dashboard_agent", - "version_drupal": "^0.1", - "version": "^0.3", - "whitelist": "^0.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "1", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Mandatory", - "nid": "2295", - "dev_component": "false" - }, - { - "type": "library", - "machine_name": "task-runner", - "name": "openeuropa/task-runner", - "full_name": "openeuropa/task-runner", - "version_drupal": "^1.0|^2.0", - "version": "^1.0|^2.0", - "whitelist": "^1.0|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "19529", - "dev_component": "true" - }, - { - "type": "library", - "machine_name": "twig", - "name": "twig/twig", - "full_name": "twig/twig", - "version_drupal": "2.15.3", - "version": "^2.15.3||^3.0", - "whitelist": "^2.15.3||^3.0", - "blacklist": false, - "secure": "^2.15.3", - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "30336", - "dev_component": "false" - }, - { - "type": "library", - "machine_name": "phpdotenv", - "name": "vlucas/phpdotenv", - "full_name": "vlucas/phpdotenv", - "version_drupal": "5.4", - "version": "^7.1", - "whitelist": "^7.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "20742", - "dev_component": "true" - } -] -'; diff --git a/tests/mock/api/v1/package-reviews-all.php b/tests/mock/api/v1/package-reviews-all.php deleted file mode 100644 index 63bdb88ff..000000000 --- a/tests/mock/api/v1/package-reviews-all.php +++ /dev/null @@ -1,36152 +0,0 @@ -=1.19 <2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3208", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "iframeremove", - "name": "drupal/iframeremove", - "full_name": "drupal/iframeremove", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "5581", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imageapi_optimize", - "name": "drupal/imageapi_optimize", - "full_name": "drupal/imageapi_optimize", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "222", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imagecache_actions", - "name": "drupal/imagecache_actions", - "full_name": "drupal/imagecache_actions", - "version_drupal": "7.x-1.7", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "223", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imagecache_external", - "name": "drupal/imagecache_external", - "full_name": "drupal/imagecache_external", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "224", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imagecache_token", - "name": "drupal/imagecache_token", - "full_name": "drupal/imagecache_token", - "version_drupal": "7.x-1.0-rc2", - "version": "^1.0-rc2", - "whitelist": "^1.0-rc2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "225", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_captcha_refresh", - "name": "drupal/image_captcha_refresh", - "full_name": "drupal/image_captcha_refresh", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2696", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_effects", - "name": "drupal/image_effects", - "full_name": "drupal/image_effects", - "version_drupal": "8.x-3.1", - "version": "^2.3|^3.1", - "whitelist": "^2.3|^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5404", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imageinfo_cache", - "name": "drupal/imageinfo_cache", - "full_name": "drupal/imageinfo_cache", - "version_drupal": "7.x-3.5", - "version": "^3.5", - "whitelist": "^3.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6138", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_library_widget", - "name": "drupal/image_library_widget", - "full_name": "drupal/image_library_widget", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10881", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imagemagick", - "name": "drupal/imagemagick", - "full_name": "drupal/imagemagick", - "version_drupal": "8.x-3.1", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2383", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_resize_filter", - "name": "drupal/image_resize_filter", - "full_name": "drupal/image_resize_filter", - "version_drupal": "7.x-1.16", - "version": "^1.16", - "whitelist": "^1.16", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "35363", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imagestyleflush", - "name": "drupal/imagestyleflush", - "full_name": "drupal/imagestyleflush", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "606", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_url_formatter", - "name": "drupal/image_url_formatter", - "full_name": "drupal/image_url_formatter", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "221", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "image_widget_crop", - "name": "drupal/image_widget_crop", - "full_name": "drupal/image_widget_crop", - "version_drupal": "8.x-2.3", - "version": "^2.2|^2.3", - "whitelist": "^2.2|^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4945", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imce", - "name": "drupal/imce", - "full_name": "drupal/imce", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "fchju,taxud-pics,isadb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "226", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imce", - "name": "drupal/imce", - "full_name": "drupal/imce", - "version_drupal": "8.x-2.2", - "version": "^2.2|^3.0.1|^3.0.3", - "whitelist": "^2.2|^3.0.1|^3.0.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurojust,digit-efsa,cnect-ecsel,empl-sfc,eurojust-extranet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2466", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imce_rename_plugin", - "name": "drupal/imce_rename_plugin", - "full_name": "drupal/imce_rename_plugin", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4871", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "imce_wysiwyg", - "name": "drupal/imce_wysiwyg", - "full_name": "drupal/imce_wysiwyg", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "13599", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "improved_multi_select", - "name": "drupal/improved_multi_select", - "full_name": "drupal/improved_multi_select", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "227", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "inactive_user", - "name": "drupal/inactive_user", - "full_name": "drupal/inactive_user", - "version_drupal": "7.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12746", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "inline_entity_form", - "name": "drupal/inline_entity_form", - "full_name": "drupal/inline_entity_form", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "228", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "inline_entity_form", - "name": "drupal/inline_entity_form", - "full_name": "drupal/inline_entity_form", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "557", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "inline_responsive_images", - "name": "drupal/inline_responsive_images", - "full_name": "drupal/inline_responsive_images", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22365", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "insert", - "name": "drupal/insert", - "full_name": "drupal/insert", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "229", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "insert_block", - "name": "drupal/insert_block", - "full_name": "drupal/insert_block", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "230", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "insert_view", - "name": "drupal/insert_view", - "full_name": "drupal/insert_view", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7946", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "instawidget", - "name": "drupal/instawidget", - "full_name": "drupal/instawidget", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5937", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "integration", - "name": "drupal/integration", - "full_name": "drupal/integration", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "231", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "integration_couchdb", - "name": "drupal/integration_couchdb", - "full_name": "drupal/integration_couchdb", - "version_drupal": "dcadb1ea483cbdaa7f476f7e0e8530873f484616", - "version": "dcadb1ea483cbdaa7f476f7e0e8530873f484616", - "whitelist": "dcadb1ea483cbdaa7f476f7e0e8530873f484616", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "232", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "invisimail", - "name": "drupal/invisimail", - "full_name": "drupal/invisimail", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "233", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "invite", - "name": "drupal/invite", - "full_name": "drupal/invite", - "version_drupal": "7.x-4.0-beta2", - "version": "^4.0-beta2", - "whitelist": "^4.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "234", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ip_anon", - "name": "drupal/ip_anon", - "full_name": "drupal/ip_anon", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2335", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ip_anon", - "name": "drupal/ip_anon", - "full_name": "drupal/ip_anon", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2458", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ip_geoloc", - "name": "drupal/ip_geoloc", - "full_name": "drupal/ip_geoloc", - "version_drupal": "7.x-1.30", - "version": "^1.30", - "whitelist": "^1.30", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7029", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jammer", - "name": "drupal/jammer", - "full_name": "drupal/jammer", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7939", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jira_rest", - "name": "drupal/jira_rest", - "full_name": "drupal/jira_rest", - "version_drupal": "7.x-6.3", - "version": "^6.3", - "whitelist": "^6.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "235", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "job_scheduler", - "name": "drupal/job_scheduler", - "full_name": "drupal/job_scheduler", - "version_drupal": "7.x-2.0-alpha3", - "version": "^2.0-alpha3", - "whitelist": "^2.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "236", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jplayer", - "name": "drupal/jplayer", - "full_name": "drupal/jplayer", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "237", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jqmulti", - "name": "drupal/jqmulti", - "full_name": "drupal/jqmulti", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "europahub", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7088", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_colorpicker", - "name": "drupal/jquery_colorpicker", - "full_name": "drupal/jquery_colorpicker", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "238", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_countdown", - "name": "drupal/jquery_countdown", - "full_name": "drupal/jquery_countdown", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "239", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui", - "name": "drupal/jquery_ui", - "full_name": "drupal/jquery_ui", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4165", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_accordion", - "name": "drupal/jquery_ui_accordion", - "full_name": "drupal/jquery_ui_accordion", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4171", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_datepicker", - "name": "drupal/jquery_ui_datepicker", - "full_name": "drupal/jquery_ui_datepicker", - "version_drupal": "8.x-1.1", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2953", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_draggable", - "name": "drupal/jquery_ui_draggable", - "full_name": "drupal/jquery_ui_draggable", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5414", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_droppable", - "name": "drupal/jquery_ui_droppable", - "full_name": "drupal/jquery_ui_droppable", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5420", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_effects", - "name": "drupal/jquery_ui_effects", - "full_name": "drupal/jquery_ui_effects", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8430", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_multiselect_widget", - "name": "drupal/jquery_ui_multiselect_widget", - "full_name": "drupal/jquery_ui_multiselect_widget", - "version_drupal": "7.x-1.16", - "version": "^1.16", - "whitelist": "^1.16", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5820", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_slider", - "name": "drupal/jquery_ui_slider", - "full_name": "drupal/jquery_ui_slider", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4772", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_tabs", - "name": "drupal/jquery_ui_tabs", - "full_name": "drupal/jquery_ui_tabs", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5650", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_tooltip", - "name": "drupal/jquery_ui_tooltip", - "full_name": "drupal/jquery_ui_tooltip", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5061", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_ui_touch_punch", - "name": "drupal/jquery_ui_touch_punch", - "full_name": "drupal/jquery_ui_touch_punch", - "version_drupal": "8.x-1.0.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4773", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jquery_update", - "name": "drupal/jquery_update", - "full_name": "drupal/jquery_update", - "version_drupal": "7.x-2.7", - "version": "^2.7||^3.0||^4.0-rc1", - "whitelist": "^2.7||^3.0||^4.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "240", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "js_injector", - "name": "drupal/js_injector", - "full_name": "drupal/js_injector", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "241", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "json2", - "name": "drupal/json2", - "full_name": "drupal/json2", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7947", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jsonapi_extras", - "name": "drupal/jsonapi_extras", - "full_name": "drupal/jsonapi_extras", - "version_drupal": "8.x-3.17", - "version": "^3.17", - "whitelist": "^3.17", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4553", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jsonapi_resources ", - "name": "drupal/jsonapi_resources ", - "full_name": "drupal/jsonapi_resources ", - "version_drupal": "8.x-1.0.-beta4", - "version": "^1.0.-beta4", - "whitelist": "^1.0.-beta4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "35883", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "json_field", - "name": "drupal/json_field", - "full_name": "drupal/json_field", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.0-rc3||^1.0-rc4||^1.1", - "whitelist": "^1.0-rc3||^1.0-rc4||^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2409", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "jwt", - "name": "drupal/jwt", - "full_name": "drupal/jwt", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ecfin-investeu", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4481", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "key", - "name": "drupal/key", - "full_name": "drupal/key", - "version_drupal": "8.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2346", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "key_auth", - "name": "drupal/key_auth", - "full_name": "drupal/key_auth", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "scic-kci-d8,scic-sr,dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "18351", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "kpi_analytics", - "name": "drupal/kpi_analytics", - "full_name": "drupal/kpi_analytics", - "version_drupal": "8.x-1.0-alpha8", - "version": "^1.0-alpha8", - "whitelist": "^1.0-alpha8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8253", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "l10n_update", - "name": "drupal/l10n_update", - "full_name": "drupal/l10n_update", - "version_drupal": "7.x-2.2", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "242", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "label_length_limit", - "name": "drupal/label_length_limit", - "full_name": "drupal/label_length_limit", - "version_drupal": "8.x-2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4517", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lang_dropdown", - "name": "drupal/lang_dropdown", - "full_name": "drupal/lang_dropdown", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "28660", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lang_dropdown", - "name": "drupal/lang_dropdown", - "full_name": "drupal/lang_dropdown", - "version_drupal": "7.x-2.7", - "version": "^2.7", - "whitelist": "^2.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5954", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "language_cookie", - "name": "drupal/language_cookie", - "full_name": "drupal/language_cookie", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2384", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "language_cookie", - "name": "drupal/language_cookie", - "full_name": "drupal/language_cookie", - "version_drupal": "7.x-1.9", - "version": "^1.9", - "whitelist": "^1.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "243", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "languagefield", - "name": "drupal/languagefield", - "full_name": "drupal/languagefield", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "244", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "languagefield", - "name": "drupal/languagefield", - "full_name": "drupal/languagefield", - "version_drupal": "8.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5416", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "language_selection_page", - "name": "drupal/language_selection_page", - "full_name": "drupal/language_selection_page", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "558", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "language_selection_page", - "name": "drupal/language_selection_page", - "full_name": "drupal/language_selection_page", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-jmh", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6598", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_at", - "name": "drupal/layout_builder_at", - "full_name": "drupal/layout_builder_at", - "version_drupal": "8.x-2.12", - "version": "^2.12", - "whitelist": "^2.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10688", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_block", - "name": "drupal/layout_builder_block", - "full_name": "drupal/layout_builder_block", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11322", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_component_attributes", - "name": "drupal/layout_builder_component_attributes", - "full_name": "drupal/layout_builder_component_attributes", - "version_drupal": "2.0.0", - "version": "^1.2 || ^2", - "whitelist": "^1.2 || ^2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11323", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_lock", - "name": "drupal/layout_builder_lock", - "full_name": "drupal/layout_builder_lock", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13901", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_builder_restrictions", - "name": "drupal/layout_builder_restrictions", - "full_name": "drupal/layout_builder_restrictions", - "version_drupal": "8.x-2.9", - "version": "^2.9", - "whitelist": "^2.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6625", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "layout_options", - "name": "drupal/layout_options", - "full_name": "drupal/layout_options", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa,efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4583", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lazy", - "name": "drupal/lazy", - "full_name": "drupal/lazy", - "version_drupal": "8.x-3.9", - "version": "^2.0|^3.9", - "whitelist": "^2.0|^3.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5405", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lazyloader", - "name": "drupal/lazyloader", - "full_name": "drupal/lazyloader", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "245", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lazy_pane", - "name": "drupal/lazy_pane", - "full_name": "drupal/lazy_pane", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5945", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet", - "name": "drupal/leaflet", - "full_name": "drupal/leaflet", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-demw,c4dweb,grow-ati,digit-jmh,jpt,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5496", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet", - "name": "drupal/leaflet", - "full_name": "drupal/leaflet", - "version_drupal": "8.x-2.1.14", - "version": "^2.1.14", - "whitelist": "^2.1.14", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-ati", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5961", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet_markercluster", - "name": "drupal/leaflet_markercluster", - "full_name": "drupal/leaflet_markercluster", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7016", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet_more_maps", - "name": "drupal/leaflet_more_maps", - "full_name": "drupal/leaflet_more_maps", - "version_drupal": "7.x-1.17", - "version": "^1.17", - "whitelist": "^1.17", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17595", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "leaflet_more_maps", - "name": "drupal/leaflet_more_maps", - "full_name": "drupal/leaflet_more_maps", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6834", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "legal", - "name": "drupal/legal", - "full_name": "drupal/legal", - "version_drupal": "7.x-1.5", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "246", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "legal", - "name": "drupal/legal", - "full_name": "drupal/legal", - "version_drupal": "2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2948", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "lexicon", - "name": "drupal/lexicon", - "full_name": "drupal/lexicon", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "247", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "libraries", - "name": "drupal/libraries", - "full_name": "drupal/libraries", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "248", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "libraries", - "name": "drupal/libraries", - "full_name": "drupal/libraries", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0-beta1", - "whitelist": "^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7118", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "like_and_dislike", - "name": "drupal/like_and_dislike", - "full_name": "drupal/like_and_dislike", - "version_drupal": "7.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "249", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "like_and_dislike", - "name": "drupal/like_and_dislike", - "full_name": "drupal/like_and_dislike", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-alpha2|^1.0-beta2", - "whitelist": "^1.0-alpha2|^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5406", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link", - "name": "drupal/link", - "full_name": "drupal/link", - "version_drupal": "7.x-1.6", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "250", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_attributes", - "name": "drupal/link_attributes", - "full_name": "drupal/link_attributes", - "version_drupal": "8.x-1.9", - "version": "^1.9", - "whitelist": "^1.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "589", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkchecker", - "name": "drupal/linkchecker", - "full_name": "drupal/linkchecker", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2452", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkchecker", - "name": "drupal/linkchecker", - "full_name": "drupal/linkchecker", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "251", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_class", - "name": "drupal/link_class", - "full_name": "drupal/link_class", - "version_drupal": "8.x-2.0.0", - "version": "^1.5|^2.0.0", - "whitelist": "^1.5|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5962", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_css", - "name": "drupal/link_css", - "full_name": "drupal/link_css", - "version_drupal": "8.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5412", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_description", - "name": "drupal/link_description", - "full_name": "drupal/link_description", - "version_drupal": "1.0.x-beta2", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "19541", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linked_field", - "name": "drupal/linked_field", - "full_name": "drupal/linked_field", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "252", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linked_field", - "name": "drupal/linked_field", - "full_name": "drupal/linked_field", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-ecsel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6929", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "link_field_autocomplete_filter", - "name": "drupal/link_field_autocomplete_filter", - "full_name": "drupal/link_field_autocomplete_filter", - "version_drupal": "8.x-1.14", - "version": "^1.14", - "whitelist": "^1.14", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6371", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkit", - "name": "drupal/linkit", - "full_name": "drupal/linkit", - "version_drupal": "7.x-3.6", - "version": "^3.6", - "whitelist": "^3.6", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "bbi,esma-eecsd,esma-extranet,esma-webst,just-tpdt,just-react,just-react", - "allowed_profiles": "openatrium", - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "253", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkit", - "name": "drupal/linkit", - "full_name": "drupal/linkit", - "version_drupal": "8.x-6.0.0-beta2", - "version": "^5.0@beta|^6.0@beta|^4.3", - "whitelist": "^5.0@beta|^6.0@beta|^4.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "559", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "linkit_media_library", - "name": "drupal/linkit_media_library", - "full_name": "drupal/linkit_media_library", - "version_drupal": "1.0.2", - "version": "^1.0.2", - "whitelist": "^1.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10121", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "location", - "name": "drupal/location", - "full_name": "drupal/location", - "version_drupal": "7.x-3.7", - "version": "^3.7", - "whitelist": "^3.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "fchju,grow-rim", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7134", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_destination", - "name": "drupal/login_destination", - "full_name": "drupal/login_destination", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5562", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_redirect_per_role", - "name": "drupal/login_redirect_per_role", - "full_name": "drupal/login_redirect_per_role", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-ati,dgt-jt3,just-ejustice, grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "7119", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_security", - "name": "drupal/login_security", - "full_name": "drupal/login_security", - "version_drupal": "8.x-1.5", - "version": "^1.5||^2.0", - "whitelist": "^1.5||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2454", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_security", - "name": "drupal/login_security", - "full_name": "drupal/login_security", - "version_drupal": "7.x-1.9", - "version": "^1.9", - "whitelist": "^1.9", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "254", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "logintoboggan", - "name": "drupal/logintoboggan", - "full_name": "drupal/logintoboggan", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "255", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "login_tracker", - "name": "drupal/login_tracker", - "full_name": "drupal/login_tracker", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8254", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "machine_name", - "name": "drupal/machine_name", - "full_name": "drupal/machine_name", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "easme-site", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "256", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mailchimp", - "name": "drupal/mailchimp", - "full_name": "drupal/mailchimp", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2385", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mailchimp", - "name": "drupal/mailchimp", - "full_name": "drupal/mailchimp", - "version_drupal": "7.x-5.6", - "version": "^5.6", - "whitelist": "^5.6", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "bbi,farnet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "258", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_edit", - "name": "drupal/mail_edit", - "full_name": "drupal/mail_edit", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "257", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_edit_features", - "name": "drupal/mail_edit_features", - "full_name": "drupal/mail_edit_features", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12652", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "maillog", - "name": "drupal/maillog", - "full_name": "drupal/maillog", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "just-emnies", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "4139", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "maillog", - "name": "drupal/maillog", - "full_name": "drupal/maillog", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4140", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_login", - "name": "drupal/mail_login", - "full_name": "drupal/mail_login", - "version_drupal": "8.x-2.4", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4784", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_redirect", - "name": "drupal/mail_redirect", - "full_name": "drupal/mail_redirect", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "2521", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mail_safety", - "name": "drupal/mail_safety", - "full_name": "drupal/mail_safety", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mailsystem", - "name": "drupal/mailsystem", - "full_name": "drupal/mailsystem", - "version_drupal": "8.x-4.2", - "version": "^4.2", - "whitelist": "^4.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2372", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mailsystem", - "name": "drupal/mailsystem", - "full_name": "drupal/mailsystem", - "version_drupal": "7.x-2.34", - "version": "^2.34", - "whitelist": "^2.34", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "259", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "manualcrop", - "name": "drupal/manualcrop", - "full_name": "drupal/manualcrop", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "260", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "markdown", - "name": "drupal/markdown", - "full_name": "drupal/markdown", - "version_drupal": "8.x-1.3", - "version": "^1.3||^3.0", - "whitelist": "^1.3||^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2342", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "markdown", - "name": "drupal/markdown", - "full_name": "drupal/markdown", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "261", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "markup", - "name": "drupal/markup", - "full_name": "drupal/markup", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-esep", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "28787", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mask", - "name": "drupal/mask", - "full_name": "drupal/mask", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2|^2.0.0-alpha1", - "whitelist": "^1.0-alpha2|^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3356", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "masquerade", - "name": "drupal/masquerade", - "full_name": "drupal/masquerade", - "version_drupal": "7.x-1.0-rc7", - "version": "^1.0-rc7", - "whitelist": "^1.0-rc7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "just-roma,irma,c4dweb,eba,esma-webst, esma-extranet,just-emnies,just-tpdt,just-tpdt", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "262", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "masquerade", - "name": "drupal/masquerade", - "full_name": "drupal/masquerade", - "version_drupal": "8.x-2.0-beta4", - "version": "^2.0-beta4", - "whitelist": "^2.0-beta4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5964", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "match_redirect", - "name": "drupal/match_redirect", - "full_name": "drupal/match_redirect", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "263", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "matomo", - "name": "drupal/matomo", - "full_name": "drupal/matomo", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3361", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "matomo", - "name": "drupal/matomo", - "full_name": "drupal/matomo", - "version_drupal": "7.x-2.12", - "version": "^2.12", - "whitelist": "^2.12", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "era", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5979", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "matomo_reporting_api", - "name": "drupal/matomo_reporting_api", - "full_name": "drupal/matomo_reporting_api", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10882", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "matrix", - "name": "drupal/matrix", - "full_name": "drupal/matrix", - "version_drupal": "7.x-2.4", - "version": "^2.4", - "whitelist": "^2.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5910", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "maxlength", - "name": "drupal/maxlength", - "full_name": "drupal/maxlength", - "version_drupal": "7.x-3.3", - "version": "^3.3", - "whitelist": "^3.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "264", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "maxlength", - "name": "drupal/maxlength", - "full_name": "drupal/maxlength", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0-rc1||^2.0.0-rc1", - "whitelist": "^1.0-rc1||^2.0.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "560", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "md_slider", - "name": "drupal/md_slider", - "full_name": "drupal/md_slider", - "version_drupal": "7.x-2.24", - "version": "^2.24", - "whitelist": "^2.24", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eac-bedigital", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5645", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media", - "name": "drupal/media", - "full_name": "drupal/media", - "version_drupal": "7.x-2.23", - "version": "^2.23", - "whitelist": "^2.23", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "265", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_avportal", - "name": "drupal/media_avportal", - "full_name": "drupal/media_avportal", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "266", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_avportal", - "name": "drupal/media_avportal", - "full_name": "drupal/media_avportal", - "version_drupal": "8.x-1.0-beta11", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "561", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_browser_plus", - "name": "drupal/media_browser_plus", - "full_name": "drupal/media_browser_plus", - "version_drupal": "7.x-3.0-beta3", - "version": "^3.0-beta3", - "whitelist": "^3.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "267", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_bulk_upload", - "name": "drupal/media_bulk_upload", - "full_name": "drupal/media_bulk_upload", - "version_drupal": "8.x-1.0-alpha27", - "version": "^1.0-alpha27||^3.0.0", - "whitelist": "^1.0-alpha27||^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2873", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_ckeditor", - "name": "drupal/media_ckeditor", - "full_name": "drupal/media_ckeditor", - "version_drupal": "7.x-2.14", - "version": "^2.14", - "whitelist": "^2.14", - "blacklist": "^1.0-alpha2", - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb,esma-webst,esma-extranet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5576", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_colorbox", - "name": "drupal/media_colorbox", - "full_name": "drupal/media_colorbox", - "version_drupal": "7.x-1.0-rc4", - "version": "^1.0-rc4", - "whitelist": "^1.0-rc4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "268", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_dailymotion", - "name": "drupal/media_dailymotion", - "full_name": "drupal/media_dailymotion", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "269", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_directories", - "name": "drupal/media_directories", - "full_name": "drupal/media_directories", - "version_drupal": "8.x-2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4957", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity", - "name": "drupal/media_entity", - "full_name": "drupal/media_entity", - "version_drupal": "8.x-2.0-beta5", - "version": "^2.0-beta5", - "whitelist": "^2.0-beta5", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2386", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_browser", - "name": "drupal/media_entity_browser", - "full_name": "drupal/media_entity_browser", - "version_drupal": "8.x-2.0-alpha3 ", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2972", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_document", - "name": "drupal/media_entity_document", - "full_name": "drupal/media_entity_document", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2387", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_download", - "name": "drupal/media_entity_download", - "full_name": "drupal/media_entity_download", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-eurydice-d8,eacea-youthwiki,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "27155", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_file_replace", - "name": "drupal/media_entity_file_replace", - "full_name": "drupal/media_entity_file_replace", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3457", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_image", - "name": "drupal/media_entity_image", - "full_name": "drupal/media_entity_image", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2388", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_instagram", - "name": "drupal/media_entity_instagram", - "full_name": "drupal/media_entity_instagram", - "version_drupal": "3.0.5", - "version": "^3.0.5", - "whitelist": "^3.0.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10268", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_slideshow", - "name": "drupal/media_entity_slideshow", - "full_name": "drupal/media_entity_slideshow", - "version_drupal": "8.x-2.4", - "version": "^2.4", - "whitelist": "^2.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-ecsel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6928", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_entity_soundcloud", - "name": "drupal/media_entity_soundcloud", - "full_name": "drupal/media_entity_soundcloud", - "version_drupal": "8.x-2.0|8.x-3.0.0", - "version": "^2.0|^3.0.0", - "whitelist": "^2.0|^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4755", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_feeds", - "name": "drupal/media_feeds", - "full_name": "drupal/media_feeds", - "version_drupal": "7.x-2.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "270", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_flickr", - "name": "drupal/media_flickr", - "full_name": "drupal/media_flickr", - "version_drupal": "7.x-2.0-alpha5", - "version": "^2.0-alpha5", - "whitelist": "^2.0-alpha5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "271", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mediafront", - "name": "drupal/mediafront", - "full_name": "drupal/mediafront", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "277", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_library_edit", - "name": "drupal/media_library_edit", - "full_name": "drupal/media_library_edit", - "version_drupal": "8.x-1.0|8.x-2.0", - "version": "^1.0|^2.0|^3.0.1", - "whitelist": "^1.0|^2.0|^3.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2438", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_migration", - "name": "drupal/media_migration", - "full_name": "drupal/media_migration", - "version_drupal": "8.x-1.0-alpha11", - "version": "^1.0-alpha11", - "whitelist": "^1.0-alpha11", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8,ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6841", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_node", - "name": "drupal/media_node", - "full_name": "drupal/media_node", - "version_drupal": "7.x-1.0-rc2", - "version": "^1.0-rc2", - "whitelist": "^1.0-rc2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "272", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_oembed", - "name": "drupal/media_oembed", - "full_name": "drupal/media_oembed", - "version_drupal": "7.x-2.7", - "version": "^2.8", - "whitelist": "^2.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "273", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_parent_entity_link", - "name": "drupal/media_parent_entity_link", - "full_name": "drupal/media_parent_entity_link", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4548", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_pdf_thumbnail", - "name": "drupal/media_pdf_thumbnail", - "full_name": "drupal/media_pdf_thumbnail", - "version_drupal": "8.x-5.0-beta6", - "version": "^5.0-beta6", - "whitelist": "^5.0-beta6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurojust", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "12044", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_revisions_ui", - "name": "drupal/media_revisions_ui", - "full_name": "drupal/media_revisions_ui", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4563", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_soundcloud", - "name": "drupal/media_soundcloud", - "full_name": "drupal/media_soundcloud", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "274", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_thumbnails_pdf", - "name": "drupal/media_thumbnails_pdf", - "full_name": "drupal/media_thumbnails_pdf", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "empl-eures-extranet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11638", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_vimeo", - "name": "drupal/media_vimeo", - "full_name": "drupal/media_vimeo", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "275", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "media_youtube", - "name": "drupal/media_youtube", - "full_name": "drupal/media_youtube", - "version_drupal": "7.x-3.4", - "version": "^3.4", - "whitelist": "^3.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "276", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mefibs", - "name": "drupal/mefibs", - "full_name": "drupal/mefibs", - "version_drupal": "7.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "278", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "memcache", - "name": "drupal/memcache", - "full_name": "drupal/memcache", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2373", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mentions", - "name": "drupal/mentions", - "full_name": "drupal/mentions", - "version_drupal": "7x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "279", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mentions", - "name": "drupal/mentions", - "full_name": "drupal/mentions", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3653", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_admin_per_menu", - "name": "drupal/menu_admin_per_menu", - "full_name": "drupal/menu_admin_per_menu", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "280", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_admin_per_menu", - "name": "drupal/menu_admin_per_menu", - "full_name": "drupal/menu_admin_per_menu", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4515", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_attributes", - "name": "drupal/menu_attributes", - "full_name": "drupal/menu_attributes", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "281", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_block", - "name": "drupal/menu_block", - "full_name": "drupal/menu_block", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2374", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_block", - "name": "drupal/menu_block", - "full_name": "drupal/menu_block", - "version_drupal": "7.x-2.7", - "version": "^2.7", - "whitelist": "^2.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "282", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_breadcrumb", - "name": "drupal/menu_breadcrumb", - "full_name": "drupal/menu_breadcrumb", - "version_drupal": "8.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2375", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_breadcrumb", - "name": "drupal/menu_breadcrumb", - "full_name": "drupal/menu_breadcrumb", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7506", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_export", - "name": "drupal/menu_export", - "full_name": "drupal/menu_export", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2480", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_fields", - "name": "drupal/menu_fields", - "full_name": "drupal/menu_fields", - "version_drupal": "7.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "283", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_html", - "name": "drupal/menu_html", - "full_name": "drupal/menu_html", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "isadb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "13598", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menuimage", - "name": "drupal/menuimage", - "full_name": "drupal/menuimage", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6779", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_import", - "name": "drupal/menu_import", - "full_name": "drupal/menu_import", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2479", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_item_extras", - "name": "drupal/menu_item_extras", - "full_name": "drupal/menu_item_extras", - "version_drupal": "8.x-2.10", - "version": "^2.10", - "whitelist": "^2.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2344", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_item_role_access", - "name": "drupal/menu_item_role_access", - "full_name": "drupal/menu_item_role_access", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4522", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_item_visibility", - "name": "drupal/menu_item_visibility", - "full_name": "drupal/menu_item_visibility", - "version_drupal": "7.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7955", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_link_attributes", - "name": "drupal/menu_link_attributes", - "full_name": "drupal/menu_link_attributes", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_link_destination", - "name": "drupal/menu_link_destination", - "full_name": "drupal/menu_link_destination", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10883", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_node", - "name": "drupal/menu_node", - "full_name": "drupal/menu_node", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "284", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_node_views", - "name": "drupal/menu_node_views", - "full_name": "drupal/menu_node_views", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "285", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menuperformance", - "name": "drupal/menuperformance", - "full_name": "drupal/menuperformance", - "version_drupal": "7.x-1.0-beta4", - "version": "^1.0-beta4", - "whitelist": "^1.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "290", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_per_role", - "name": "drupal/menu_per_role", - "full_name": "drupal/menu_per_role", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "3559", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_per_role", - "name": "drupal/menu_per_role", - "full_name": "drupal/menu_per_role", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4833", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_position", - "name": "drupal/menu_position", - "full_name": "drupal/menu_position", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2389", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_position", - "name": "drupal/menu_position", - "full_name": "drupal/menu_position", - "version_drupal": "7.x-1.2", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "2526", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_select", - "name": "drupal/menu_select", - "full_name": "drupal/menu_select", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev|^1.0-beta2", - "whitelist": "^^dev|^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "enrd,eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "286", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_token", - "name": "drupal/menu_token", - "full_name": "drupal/menu_token", - "version_drupal": "7.x-1.0-beta7", - "version": "^1.0-beta7", - "whitelist": "^1.0-beta7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "287", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_token", - "name": "drupal/menu_token", - "full_name": "drupal/menu_token", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6844", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_trail_by_path", - "name": "drupal/menu_trail_by_path", - "full_name": "drupal/menu_trail_by_path", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "288", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_trail_by_path", - "name": "drupal/menu_trail_by_path", - "full_name": "drupal/menu_trail_by_path", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5392", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "menu_view_unpublished", - "name": "drupal/menu_view_unpublished", - "full_name": "drupal/menu_view_unpublished", - "version_drupal": "7.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "289", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "merge_translations", - "name": "drupal/merge_translations", - "full_name": "drupal/merge_translations", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2447", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message", - "name": "drupal/message", - "full_name": "drupal/message", - "version_drupal": "7.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "291", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message", - "name": "drupal/message", - "full_name": "drupal/message", - "version_drupal": "8.x-1.2", - "version": "^1.0|^1.2", - "whitelist": "^1.0|^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-esep,cnect-futurium,eacea-epale,cnect-dsjp,intpa-c4dev,ener-scmcs,digit-opensocial-pilot,jrc-opensocial-e4c,dg-cnect-cybersecurity-atlas,jrc-k4p,joinup,digit-joinup,just-ejtp,fpi-euvp,intpa-capacity4dev,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "3352", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_digest", - "name": "drupal/message_digest", - "full_name": "drupal/message_digest", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "enrd,frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "292", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_digest", - "name": "drupal/message_digest", - "full_name": "drupal/message_digest", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.0-rc3|^1.2", - "whitelist": "^1.0-rc3|^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-epale,cnect-dsjp,intpa-c4dev,cnect-futurium,eacea-esep,jrc-k4p,joinup,digit-joinup,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3353", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_notify", - "name": "drupal/message_notify", - "full_name": "drupal/message_notify", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "293", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_notify", - "name": "drupal/message_notify", - "full_name": "drupal/message_notify", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3012", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_subscribe", - "name": "drupal/message_subscribe", - "full_name": "drupal/message_subscribe", - "version_drupal": "7.x-1.0-rc2", - "version": "^1.0-rc2", - "whitelist": "^1.0-rc2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "enrd,frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "294", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_subscribe", - "name": "drupal/message_subscribe", - "full_name": "drupal/message_subscribe", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-epale,cnect-dsjp,cnect-futurium,eacea-esep,jrc-k4p,joinup,digit-joinup,just-ejtp,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3225", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_subscribe_email_frequency", - "name": "drupal/message_subscribe_email_frequency", - "full_name": "drupal/message_subscribe_email_frequency", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "295", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "message_ui", - "name": "drupal/message_ui", - "full_name": "drupal/message_ui", - "version_drupal": "8.x-1.0-beta4", - "version": "^1.0-beta4", - "whitelist": "^1.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2957", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "meta_entity", - "name": "drupal/meta_entity", - "full_name": "drupal/meta_entity", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10884", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "metatag", - "name": "drupal/metatag", - "full_name": "drupal/metatag", - "version_drupal": "7.x-1.25", - "version": "^1.25", - "whitelist": "^1.25", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "296", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "metatag", - "name": "drupal/metatag", - "full_name": "drupal/metatag", - "version_drupal": "8.x-1.16", - "version": "^1.11|^1.16", - "whitelist": "^1.11|^1.16", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "588", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "metatag_routes", - "name": "drupal/metatag_routes", - "full_name": "drupal/metatag_routes", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-ecif,secgen-ecip", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "20942", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migmag", - "name": "drupal/migmag", - "full_name": "drupal/migmag", - "version_drupal": "1.7.0", - "version": "^1.7.0", - "whitelist": "^1.7.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14653", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate", - "name": "drupal/migrate", - "full_name": "drupal/migrate", - "version_drupal": "7.x-2.8", - "version": "^2.8", - "whitelist": "^2.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "297", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_d2d", - "name": "drupal/migrate_d2d", - "full_name": "drupal/migrate_d2d", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "298", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_devel", - "name": "drupal/migrate_devel", - "full_name": "drupal/migrate_devel", - "version_drupal": "8.x-2.0-alpha2", - "version": "^8.x-2.0-alpha2", - "whitelist": "^8.x-2.0-alpha2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6607", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_extras", - "name": "drupal/migrate_extras", - "full_name": "drupal/migrate_extras", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "300", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_file", - "name": "drupal/migrate_file", - "full_name": "drupal/migrate_file", - "version_drupal": "8.x-1.1|8.x-2.0.0", - "version": "^1.1|^2.0.0", - "whitelist": "^1.1|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4482", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_file_to_media", - "name": "drupal/migrate_file_to_media", - "full_name": "drupal/migrate_file_to_media", - "version_drupal": "2.0.7", - "version": "^2.0.7", - "whitelist": "^2.0.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8,ewrc-d8,edps-edps", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6610", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_group_settings", - "name": "drupal/migrate_group_settings", - "full_name": "drupal/migrate_group_settings", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "299", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_manifest", - "name": "drupal/migrate_manifest", - "full_name": "drupal/migrate_manifest", - "version_drupal": "8.x-1.9", - "version": "^1.9||^2.0", - "whitelist": "^1.9||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2279", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_media_handler", - "name": "drupal/migrate_media_handler", - "full_name": "drupal/migrate_media_handler", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8,ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6617", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_plus", - "name": "drupal/migrate_plus", - "full_name": "drupal/migrate_plus", - "version_drupal": "8.x-4.2||8.x-5.1||6.0.0", - "version": "^4.2||^5.1||^6.0.0", - "whitelist": "^4.2||^5.1||^6.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "579", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_skip_on_404", - "name": "drupal/migrate_skip_on_404", - "full_name": "drupal/migrate_skip_on_404", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7448", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_source_csv", - "name": "drupal/migrate_source_csv", - "full_name": "drupal/migrate_source_csv", - "version_drupal": "8.x-3.4", - "version": "^3.4", - "whitelist": "^3.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2390", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_source_directory", - "name": "drupal/migrate_source_directory", - "full_name": "drupal/migrate_source_directory", - "version_drupal": "8.x-1.0", - "version": "^1.0||^2.0.0", - "whitelist": "^1.0||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4204", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_source_graphql", - "name": "drupal/migrate_source_graphql", - "full_name": "drupal/migrate_source_graphql", - "version_drupal": "2.0.0-beta2", - "version": "^2.0.0-beta2", - "whitelist": "^2.0.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13875", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_tools", - "name": "drupal/migrate_tools", - "full_name": "drupal/migrate_tools", - "version_drupal": "8.x-4.5||8.x-5.0||6.0.0", - "version": "^4.5||^5.0||^6.0.0", - "whitelist": "^4.5||^5.0||^6.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "578", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "migrate_upgrade", - "name": "drupal/migrate_upgrade", - "full_name": "drupal/migrate_upgrade", - "version_drupal": "4.0.0", - "version": "^3.2||^4.0.0", - "whitelist": "^3.2||^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "5098", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mimemail", - "name": "drupal/mimemail", - "full_name": "drupal/mimemail", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10742", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "mimemail", - "name": "drupal/mimemail", - "full_name": "drupal/mimemail", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2317", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "minifyhtml", - "name": "drupal/minifyhtml", - "full_name": "drupal/minifyhtml", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "21242", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "miniorange_saml", - "name": "drupal/miniorange_saml", - "full_name": "drupal/miniorange_saml", - "version_drupal": "8.x-2.26", - "version": "^2.26", - "whitelist": "^2.26", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-esma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "23649", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "missing_module", - "name": "drupal/missing_module", - "full_name": "drupal/missing_module", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "301", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "modal_forms", - "name": "drupal/modal_forms", - "full_name": "drupal/modal_forms", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "302", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "moderated_content_bulk_publish", - "name": "drupal/moderated_content_bulk_publish", - "full_name": "drupal/moderated_content_bulk_publish", - "version_drupal": "2.0.11", - "version": "^2.0.11", - "whitelist": "^2.0.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22371", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "moderation_dashboard", - "name": "drupal/moderation_dashboard", - "full_name": "drupal/moderation_dashboard", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7121", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "module_filter", - "name": "drupal/module_filter", - "full_name": "drupal/module_filter", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "303", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "module_filter", - "name": "drupal/module_filter", - "full_name": "drupal/module_filter", - "version_drupal": "8.x-3.1", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3167", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "module_missing_message_fixer", - "name": "drupal/module_missing_message_fixer", - "full_name": "drupal/module_missing_message_fixer", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "304", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "moment", - "name": "drupal/moment", - "full_name": "drupal/moment", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5965", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "monolog", - "name": "drupal/monolog", - "full_name": "drupal/monolog", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "20530", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "monolog", - "name": "drupal/monolog", - "full_name": "drupal/monolog", - "version_drupal": "8.x-1.3", - "version": "^1.3|^2.0.0-beta2|3.0.0-beta1", - "whitelist": "^1.3|^2.0.0-beta2|3.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "recommended", - "nid": "2459", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multifield", - "name": "drupal/multifield", - "full_name": "drupal/multifield", - "version_drupal": "7.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "305", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multiform", - "name": "drupal/multiform", - "full_name": "drupal/multiform", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "306", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multiple_fields_remove_button", - "name": "drupal/multiple_fields_remove_button", - "full_name": "drupal/multiple_fields_remove_button", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,7.x", - "usage": "Free", - "nid": "307", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multiple_selects", - "name": "drupal/multiple_selects", - "full_name": "drupal/multiple_selects", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,7.x", - "usage": "Free", - "nid": "308", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multiselect", - "name": "drupal/multiselect", - "full_name": "drupal/multiselect", - "version_drupal": "7.x-1.13", - "version": "^1.13", - "whitelist": "^1.13", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,7.x", - "usage": "Free", - "nid": "309", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multiupload_filefield_widget", - "name": "drupal/multiupload_filefield_widget", - "full_name": "drupal/multiupload_filefield_widget", - "version_drupal": "7.x-1.13", - "version": "^1.13", - "whitelist": "^1.13", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-jmh", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "310", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "multivalue_form_element", - "name": "drupal/multivalue_form_element", - "full_name": "drupal/multivalue_form_element", - "version_drupal": "8.x-1.0.0-beta1", - "version": "^1.0.0-beta1", - "whitelist": "^1.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4449", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nagios", - "name": "drupal/nagios", - "full_name": "drupal/nagios", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "311", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "navbar", - "name": "drupal/navbar", - "full_name": "drupal/navbar", - "version_drupal": "7.x-1.7", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7962", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "neutral_paths", - "name": "drupal/neutral_paths", - "full_name": "drupal/neutral_paths", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "603", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nexteuropa_dashboard_agent", - "name": "drupal/nexteuropa_dashboard_agent", - "full_name": "drupal/nexteuropa_dashboard_agent", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "1", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2296", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nice_menus", - "name": "drupal/nice_menus", - "full_name": "drupal/nice_menus", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6109", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nocurrent_pass", - "name": "drupal/nocurrent_pass", - "full_name": "drupal/nocurrent_pass", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "5503", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeaccess", - "name": "drupal/nodeaccess", - "full_name": "drupal/nodeaccess", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeaccess", - "name": "drupal/nodeaccess", - "full_name": "drupal/nodeaccess", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "317", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_access_grants", - "name": "drupal/node_access_grants", - "full_name": "drupal/node_access_grants", - "version_drupal": "8.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6114", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeaccess_userreference", - "name": "drupal/nodeaccess_userreference", - "full_name": "drupal/nodeaccess_userreference", - "version_drupal": "7.x-3.10", - "version": "^3.10", - "whitelist": "^3.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "318", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeblock", - "name": "drupal/nodeblock", - "full_name": "drupal/nodeblock", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "316", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_class", - "name": "drupal/node_class", - "full_name": "drupal/node_class", - "version_drupal": "2.0.0", - "version": "^1.0-beta1||^2.0.0", - "whitelist": "^1.0-beta1||^2.0.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "chafea-fm", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "599", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_clone", - "name": "drupal/node_clone", - "full_name": "drupal/node_clone", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "312", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_convert", - "name": "drupal/node_convert", - "full_name": "drupal/node_convert", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "313", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_edit_protection", - "name": "drupal/node_edit_protection", - "full_name": "drupal/node_edit_protection", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2359", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_edit_protection", - "name": "drupal/node_edit_protection", - "full_name": "drupal/node_edit_protection", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4843", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_export", - "name": "drupal/node_export", - "full_name": "drupal/node_export", - "version_drupal": "7.x-3.1", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "314", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_gallery", - "name": "drupal/node_gallery", - "full_name": "drupal/node_gallery", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodequeue", - "name": "drupal/nodequeue", - "full_name": "drupal/nodequeue", - "version_drupal": "7.x-2.1", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "319", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_read_time", - "name": "drupal/node_read_time", - "full_name": "drupal/node_read_time", - "version_drupal": "8.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "35875", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_revision_delete", - "name": "drupal/node_revision_delete", - "full_name": "drupal/node_revision_delete", - "version_drupal": "8.x-1.0-rc2", - "version": "^1.0-rc2", - "whitelist": "^1.0-rc2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2451", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_revision_delete", - "name": "drupal/node_revision_delete", - "full_name": "drupal/node_revision_delete", - "version_drupal": "7.x-2.6", - "version": "^2.6||^3.2", - "whitelist": "^2.6||^3.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "315", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodetype_access", - "name": "drupal/nodetype_access", - "full_name": "drupal/nodetype_access", - "version_drupal": "7.x-1.0-rc2", - "version": "1.0-rc2", - "whitelist": "1.0-rc2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2652", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "nodeviewcount", - "name": "drupal/nodeviewcount", - "full_name": "drupal/nodeviewcount", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "epso-epsosite", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "16139", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_view_permissions", - "name": "drupal/node_view_permissions", - "full_name": "drupal/node_view_permissions", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2347", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "node_view_permissions", - "name": "drupal/node_view_permissions", - "full_name": "drupal/node_view_permissions", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5924", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "noreqnewpass", - "name": "drupal/noreqnewpass", - "full_name": "drupal/noreqnewpass", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "16254", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "noreqnewpass", - "name": "drupal/noreqnewpass", - "full_name": "drupal/noreqnewpass", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6688", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "o365", - "name": "drupal/o365", - "full_name": "drupal/o365", - "version_drupal": "8.x-2.0.4", - "version": "^1.0-beta5 || ^2.0.4", - "whitelist": "^1.0-beta5 || ^2.0.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8255", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_comment", - "name": "drupal/oa_comment", - "full_name": "drupal/oa_comment", - "version_drupal": "7.x-2.17", - "version": "^2.17", - "whitelist": "^2.17", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": "openatrium", - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5908", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_core", - "name": "drupal/oa_core", - "full_name": "drupal/oa_core", - "version_drupal": "7.x-2.92", - "version": "^2.92", - "whitelist": "^2.92", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5824", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_favorites", - "name": "drupal/oa_favorites", - "full_name": "drupal/oa_favorites", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5968", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_notifications", - "name": "drupal/oa_notifications", - "full_name": "drupal/oa_notifications", - "version_drupal": "7.x-2.35", - "version": "^2.35", - "whitelist": "^2.35", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5825", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_related", - "name": "drupal/oa_related", - "full_name": "drupal/oa_related", - "version_drupal": "7.x-2.15", - "version": "^2.15", - "whitelist": "^2.15", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5771", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_responsive_regions", - "name": "drupal/oa_responsive_regions", - "full_name": "drupal/oa_responsive_regions", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "irma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "21598", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_site_layout", - "name": "drupal/oa_site_layout", - "full_name": "drupal/oa_site_layout", - "version_drupal": "7.x-2.4", - "version": "^2.4", - "whitelist": "^2.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5822", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_toolbar", - "name": "drupal/oa_toolbar", - "full_name": "drupal/oa_toolbar", - "version_drupal": "7.x-2.19", - "version": "^2.19", - "whitelist": "^2.19", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "irma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "21599", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oauth2_client", - "name": "drupal/oauth2_client", - "full_name": "drupal/oauth2_client", - "version_drupal": "8.x-3.0-beta1", - "version": "^2.0-beta4 || ^3.0-beta1", - "whitelist": "^2.0-beta4 || ^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8256", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oauthconnector", - "name": "drupal/oauthconnector", - "full_name": "drupal/oauthconnector", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "320", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oa_worktracker", - "name": "drupal/oa_worktracker", - "full_name": "drupal/oa_worktracker", - "version_drupal": "7.x-2.11", - "version": "^2.11", - "whitelist": "^2.11", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5819", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "oembed_providers", - "name": "drupal/oembed_providers", - "full_name": "drupal/oembed_providers", - "version_drupal": "1.1.5", - "version": "^1.1.5||^2.0", - "whitelist": "^1.1.5||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8454", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og", - "name": "drupal/og", - "full_name": "drupal/og", - "version_drupal": "8.x-1.0-alpha7", - "version": "^1.0-alpha7||dev-neutral-access-result", - "whitelist": "^1.0-alpha7||dev-neutral-access-result", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10893", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og", - "name": "drupal/og", - "full_name": "drupal/og", - "version_drupal": "7.x-2.10", - "version": "^2.10", - "whitelist": "^2.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "321", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_bulkadd", - "name": "drupal/og_bulkadd", - "full_name": "drupal/og_bulkadd", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "322", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_checkboxes", - "name": "drupal/og_checkboxes", - "full_name": "drupal/og_checkboxes", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2529", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_comments_access", - "name": "drupal/og_comments_access", - "full_name": "drupal/og_comments_access", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "323", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_homepage", - "name": "drupal/og_homepage", - "full_name": "drupal/og_homepage", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "324", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_invite", - "name": "drupal/og_invite", - "full_name": "drupal/og_invite", - "version_drupal": "7.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "325", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_invite_people", - "name": "drupal/og_invite_people", - "full_name": "drupal/og_invite_people", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "326", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_linkchecker", - "name": "drupal/og_linkchecker", - "full_name": "drupal/og_linkchecker", - "version_drupal": "7.x-2.0-rc1", - "version": "^2.0-rc1", - "whitelist": "^2.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "327", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_menu", - "name": "drupal/og_menu", - "full_name": "drupal/og_menu", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4||^2.0.0", - "whitelist": "^1.0-alpha4||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10885", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_menu", - "name": "drupal/og_menu", - "full_name": "drupal/og_menu", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "328", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_menu_single", - "name": "drupal/og_menu_single", - "full_name": "drupal/og_menu_single", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5940", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_role_override", - "name": "drupal/og_role_override", - "full_name": "drupal/og_role_override", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "329", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_session_context", - "name": "drupal/og_session_context", - "full_name": "drupal/og_session_context", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5823", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_subgroups", - "name": "drupal/og_subgroups", - "full_name": "drupal/og_subgroups", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2538", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_variables", - "name": "drupal/og_variables", - "full_name": "drupal/og_variables", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "5505", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_vocab", - "name": "drupal/og_vocab", - "full_name": "drupal/og_vocab", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "330", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "og_webform", - "name": "drupal/og_webform", - "full_name": "drupal/og_webform", - "version_drupal": "7.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "estat-crosportal", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "331", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "omega_tools", - "name": "drupal/omega_tools", - "full_name": "drupal/omega_tools", - "version_drupal": "7.x-3.0-rc4", - "version": "^3.0-rc4", - "whitelist": "^3.0-rc4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12743", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "om_maximenu", - "name": "drupal/om_maximenu", - "full_name": "drupal/om_maximenu", - "version_drupal": "7.x-1.44", - "version": "^1.44", - "whitelist": "^1.44", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "332", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "onomasticon", - "name": "drupal/onomasticon", - "full_name": "drupal/onomasticon", - "version_drupal": "8.x-2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4560", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi", - "name": "drupal/openapi", - "full_name": "drupal/openapi", - "version_drupal": "8.x-1.0-beta7|8.x-2.0-rc3", - "version": "1.0-beta7|2.0-rc3|2.0", - "whitelist": "1.0-beta7|2.0-rc3|2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4751", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi_jsonapi", - "name": "drupal/openapi_jsonapi", - "full_name": "drupal/openapi_jsonapi", - "version_drupal": "3.0.2", - "version": "^3.0.2", - "whitelist": "^3.0.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25618", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi_ui", - "name": "drupal/openapi_ui", - "full_name": "drupal/openapi_ui", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.0-rc3", - "whitelist": "^1.0-rc3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25630", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "openapi_ui_swagger", - "name": "drupal/openapi_ui_swagger", - "full_name": "drupal/openapi_ui_swagger", - "version_drupal": "8.x-1.0-rc4", - "version": "^1.0-rc4", - "whitelist": "^1.0-rc4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4754", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "optional_end_date", - "name": "drupal/optional_end_date", - "full_name": "drupal/optional_end_date", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "575", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "options_element", - "name": "drupal/options_element", - "full_name": "drupal/options_element", - "version_drupal": "7.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2539", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "override_node_options", - "name": "drupal/override_node_options", - "full_name": "drupal/override_node_options", - "version_drupal": "7.x-1.13", - "version": "^1.13", - "whitelist": "^1.13", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "333", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "override_node_options", - "name": "drupal/override_node_options", - "full_name": "drupal/override_node_options", - "version_drupal": "8.x-2.6", - "version": "^2.4|^2.6", - "whitelist": "^2.4|^2.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4913", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "owlcarousel", - "name": "drupal/owlcarousel", - "full_name": "drupal/owlcarousel", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "334", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "page_load_progress", - "name": "drupal/page_load_progress", - "full_name": "drupal/page_load_progress", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17543", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "page_load_progress", - "name": "drupal/page_load_progress", - "full_name": "drupal/page_load_progress", - "version_drupal": "2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22782", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "page_manager", - "name": "drupal/page_manager", - "full_name": "drupal/page_manager", - "version_drupal": "8.x-4.0-beta4", - "version": "^4.0-beta4", - "whitelist": "^4.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2275", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "page_title", - "name": "drupal/page_title", - "full_name": "drupal/page_title", - "version_drupal": "7.x-2.7", - "version": "^2.7", - "whitelist": "^2.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "335", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panelbutton", - "name": "drupal/panelbutton", - "full_name": "drupal/panelbutton", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4873", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panelizer", - "name": "drupal/panelizer", - "full_name": "drupal/panelizer", - "version_drupal": "7.x-3.2", - "version": "^3.3", - "whitelist": "^3.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "336", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panelizer", - "name": "drupal/panelizer", - "full_name": "drupal/panelizer", - "version_drupal": "8.x-4.4", - "version": "^4.4", - "whitelist": "^4.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5421", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels", - "name": "drupal/panels", - "full_name": "drupal/panels", - "version_drupal": "7.x-3.9", - "version": "^3.9", - "whitelist": "^3.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "337", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels", - "name": "drupal/panels", - "full_name": "drupal/panels", - "version_drupal": "8.x-4.6", - "version": "^4.6", - "whitelist": "^4.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3672", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels_bootstrap_layouts", - "name": "drupal/panels_bootstrap_layouts", - "full_name": "drupal/panels_bootstrap_layouts", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2550", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels_bootstrap_styles", - "name": "drupal/panels_bootstrap_styles", - "full_name": "drupal/panels_bootstrap_styles", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2551", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels_customerror", - "name": "drupal/panels_customerror", - "full_name": "drupal/panels_customerror", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5942", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels_everywhere", - "name": "drupal/panels_everywhere", - "full_name": "drupal/panels_everywhere", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5929", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panels_style_collapsible", - "name": "drupal/panels_style_collapsible", - "full_name": "drupal/panels_style_collapsible", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12737", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panopoly_search", - "name": "drupal/panopoly_search", - "full_name": "drupal/panopoly_search", - "version_drupal": "7.x-1.81", - "version": "^1.81", - "whitelist": "^1.81", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5909", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "panopoly_wysiwyg", - "name": "drupal/panopoly_wysiwyg", - "full_name": "drupal/panopoly_wysiwyg", - "version_drupal": "7.x-1.90", - "version": "^1.90", - "whitelist": "^1.90", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "35364", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraph_blocks", - "name": "drupal/paragraph_blocks", - "full_name": "drupal/paragraph_blocks", - "version_drupal": "8.x-3.0.0", - "version": "^3.0.0", - "whitelist": "^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5100", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs", - "name": "drupal/paragraphs", - "full_name": "drupal/paragraphs", - "version_drupal": "7.x-1.0-rc4", - "version": "^1.0-rc5", - "whitelist": "^1.0-rc5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "338", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs", - "name": "drupal/paragraphs", - "full_name": "drupal/paragraphs", - "version_drupal": "8.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "562", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_collection", - "name": "drupal/paragraphs_collection", - "full_name": "drupal/paragraphs_collection", - "version_drupal": "8.x-1.0-alpha8", - "version": "^1.0-alpha8", - "whitelist": "^1.0-alpha8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7164", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_edit", - "name": "drupal/paragraphs_edit", - "full_name": "drupal/paragraphs_edit", - "version_drupal": "8.x-2.0-beta1", - "version": "^2.0-beta1", - "whitelist": "^2.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17786", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_jquery_ui_accordion", - "name": "drupal/paragraphs_jquery_ui_accordion", - "full_name": "drupal/paragraphs_jquery_ui_accordion", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10886", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraphs_limits", - "name": "drupal/paragraphs_limits", - "full_name": "drupal/paragraphs_limits", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-srb, rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8376", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paragraph_view_mode", - "name": "drupal/paragraph_view_mode", - "full_name": "drupal/paragraph_view_mode", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3762", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "paranoia", - "name": "drupal/paranoia", - "full_name": "drupal/paranoia", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6773", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "password_policy", - "name": "drupal/password_policy", - "full_name": "drupal/password_policy", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0-beta1", - "whitelist": "^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2455", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "password_policy", - "name": "drupal/password_policy", - "full_name": "drupal/password_policy", - "version_drupal": "7.x-2.0-alpha8", - "version": "^2.0-alpha8", - "whitelist": "^2.0-alpha8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "339", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "path_access", - "name": "drupal/path_access", - "full_name": "drupal/path_access", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2540", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathauto", - "name": "drupal/pathauto", - "full_name": "drupal/pathauto", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "341", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathauto", - "name": "drupal/pathauto", - "full_name": "drupal/pathauto", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "563", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathauto_enforce", - "name": "drupal/pathauto_enforce", - "full_name": "drupal/pathauto_enforce", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "342", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathauto_force_regenerate", - "name": "drupal/pathauto_force_regenerate", - "full_name": "drupal/pathauto_force_regenerate", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "4766", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathauto_persist", - "name": "drupal/pathauto_persist", - "full_name": "drupal/pathauto_persist", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "343", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "path_breadcrumbs", - "name": "drupal/path_breadcrumbs", - "full_name": "drupal/path_breadcrumbs", - "version_drupal": "7.x-3.4", - "version": "^3.4", - "whitelist": "^3.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5436", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathologic", - "name": "drupal/pathologic", - "full_name": "drupal/pathologic", - "version_drupal": "7.x-2.12", - "version": "^2.12||^3.1", - "whitelist": "^2.12||^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "344", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathologic", - "name": "drupal/pathologic", - "full_name": "drupal/pathologic", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2 ", - "whitelist": "^1.0-alpha2 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5424", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "path_redirect_import", - "name": "drupal/path_redirect_import", - "full_name": "drupal/path_redirect_import", - "version_drupal": "7.x-1.0-rc4", - "version": "^1.0-rc4", - "whitelist": "^1.0-rc4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "8482", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pathrules", - "name": "drupal/pathrules", - "full_name": "drupal/pathrules", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "340", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pcp", - "name": "drupal/pcp", - "full_name": "drupal/pcp", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "345", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pcp", - "name": "drupal/pcp", - "full_name": "drupal/pcp", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7850", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf", - "name": "drupal/pdf", - "full_name": "drupal/pdf", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eeas-eeas-d8,eurofound,intpa-capacity4dev", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "13591", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf", - "name": "drupal/pdf", - "full_name": "drupal/pdf", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "346", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_api", - "name": "drupal/pdf_api", - "full_name": "drupal/pdf_api", - "version_drupal": "8x-2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": "<2.0", - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "", - "nid": "3210", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdfpreview", - "name": "drupal/pdfpreview", - "full_name": "drupal/pdfpreview", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2465", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_reader", - "name": "drupal/pdf_reader", - "full_name": "drupal/pdf_reader", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eeas-eeas-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "10120", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_reader", - "name": "drupal/pdf_reader", - "full_name": "drupal/pdf_reader", - "version_drupal": "7.x-1.0-rc6", - "version": "^1.0-rc6", - "whitelist": "^1.0-rc6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "347", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_using_mpdf", - "name": "drupal/pdf_using_mpdf", - "full_name": "drupal/pdf_using_mpdf", - "version_drupal": "7.x-2.6", - "version": "^2.6", - "whitelist": "^2.6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eba,farnet", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2545", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pdf_using_mpdf", - "name": "drupal/pdf_using_mpdf", - "full_name": "drupal/pdf_using_mpdf", - "version_drupal": "8.x-2.2", - "version": "^1.0|^2.2", - "whitelist": "^1.0|^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3209", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pendo", - "name": "drupal/pendo", - "full_name": "drupal/pendo", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "performance", - "name": "drupal/performance", - "full_name": "drupal/performance", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12738", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "permalink_block", - "name": "drupal/permalink_block", - "full_name": "drupal/permalink_block", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "348", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "permissions_filter", - "name": "drupal/permissions_filter", - "full_name": "drupal/permissions_filter", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2299", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "persistent_menu_items", - "name": "drupal/persistent_menu_items", - "full_name": "drupal/persistent_menu_items", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "349", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "phpexcel", - "name": "drupal/phpexcel", - "full_name": "drupal/phpexcel", - "version_drupal": "7.x-3.11", - "version": "^3.11", - "whitelist": "^3.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "355", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "phpmailer", - "name": "drupal/phpmailer", - "full_name": "drupal/phpmailer", - "version_drupal": "7.x-3.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "350", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "phpoffice_common", - "name": "drupal/phpoffice_common", - "full_name": "drupal/phpoffice_common", - "version_drupal": "7.x-1.4", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2530", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "phpwkhtmltopdf", - "name": "drupal/phpwkhtmltopdf", - "full_name": "drupal/phpwkhtmltopdf", - "version_drupal": "7.x-2.1", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2532", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "phpword", - "name": "drupal/phpword", - "full_name": "drupal/phpword", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2531", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "picture", - "name": "drupal/picture", - "full_name": "drupal/picture", - "version_drupal": "7.x-2.13", - "version": "^2.13", - "whitelist": "^2.13", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "351", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pipeline", - "name": "drupal/pipeline", - "full_name": "drupal/pipeline", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10889", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "piwik", - "name": "drupal/piwik", - "full_name": "drupal/piwik", - "version_drupal": "7.x-2.9", - "version": "^2.9", - "whitelist": "^2.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "352", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "piwik_reports", - "name": "drupal/piwik_reports", - "full_name": "drupal/piwik_reports", - "version_drupal": "7.x-4.0", - "version": "^4.0", - "whitelist": "^4.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7958", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "placeholder", - "name": "drupal/placeholder", - "full_name": "drupal/placeholder", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "353", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "plug", - "name": "drupal/plug", - "full_name": "drupal/plug", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5944", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "plupload", - "name": "drupal/plupload", - "full_name": "drupal/plupload", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "354", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pm_existing_pages", - "name": "drupal/pm_existing_pages", - "full_name": "drupal/pm_existing_pages", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "356", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "pmgrowl", - "name": "drupal/pmgrowl", - "full_name": "drupal/pmgrowl", - "version_drupal": "7.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12747", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "poll", - "name": "drupal/poll", - "full_name": "drupal/poll", - "version_drupal": "8.x-1.5", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2391", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "poll_blocks", - "name": "drupal/poll_blocks", - "full_name": "drupal/poll_blocks", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "357", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "popup", - "name": "drupal/popup", - "full_name": "drupal/popup", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12748", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "popup_message", - "name": "drupal/popup_message", - "full_name": "drupal/popup_message", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "358", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "postal_code_validation", - "name": "drupal/postal_code_validation", - "full_name": "drupal/postal_code_validation", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2306", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "prepopulate", - "name": "drupal/prepopulate", - "full_name": "drupal/prepopulate", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurofound", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "18669", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "prepopulate", - "name": "drupal/prepopulate", - "full_name": "drupal/prepopulate", - "version_drupal": "7.x-2.0", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "359", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "preserve_changed", - "name": "drupal/preserve_changed", - "full_name": "drupal/preserve_changed", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "jrc-k4p", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2484", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "prev_next", - "name": "drupal/prev_next", - "full_name": "drupal/prev_next", - "version_drupal": "7.x-2.x-dev", - "version": "^2.x-dev", - "whitelist": "^2.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6778", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "print", - "name": "drupal/print", - "full_name": "drupal/print", - "version_drupal": "7.x-2.2", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "360", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "printable", - "name": "drupal/printable", - "full_name": "drupal/printable", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2956", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_content", - "name": "drupal/private_content", - "full_name": "drupal/private_content", - "version_drupal": "8.x-2.0-rc3", - "version": "^2.0-rc3", - "whitelist": "^2.0-rc3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "23819", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_files_download_permission", - "name": "drupal/private_files_download_permission", - "full_name": "drupal/private_files_download_permission", - "version_drupal": "3.0.4", - "version": "^3.0.4", - "whitelist": "^3.0.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11927", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_files_download_permission", - "name": "drupal/private_files_download_permission", - "full_name": "drupal/private_files_download_permission", - "version_drupal": "7.x-2.7", - "version": "^2.7", - "whitelist": "^2.7", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "612", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_message", - "name": "drupal/private_message", - "full_name": "drupal/private_message", - "version_drupal": "8.x-2.0-beta16", - "version": "^1.2|^1.3|^2.0-beta16", - "whitelist": "^1.2|^1.3|^2.0-beta16", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "fpi-euvp,euvp,cnect-dsjp,eacea-esep,ener-scmcs,digit-opensocial-pilot,jrc-opensocial-e4c,jrc-k4p,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2951", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "private_message_flood", - "name": "drupal/private_message_flood", - "full_name": "drupal/private_message_flood", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eacea-esep", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5651", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "privatemsg", - "name": "drupal/privatemsg", - "full_name": "drupal/privatemsg", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "361", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "proc", - "name": "drupal/proc", - "full_name": "drupal/proc", - "version_drupal": "7.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5928", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "profile", - "name": "drupal/profile", - "full_name": "drupal/profile", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4077", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "profile2", - "name": "drupal/profile2", - "full_name": "drupal/profile2", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,eac-eu-aid,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "362", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "profile_switcher", - "name": "drupal/profile_switcher", - "full_name": "drupal/profile_switcher", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd,grow-vto,esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6762", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "profile_switcher", - "name": "drupal/profile_switcher", - "full_name": "drupal/profile_switcher", - "version_drupal": "8.x-1.0-alpha5", - "version": "^1.0-alpha5", - "whitelist": "^1.0-alpha5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "edps-edpb,edps-edps,just-ejtp,digit-oesa,digit-oec,digit-oe,just-ejustice,ema-ema", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9955", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "project", - "name": "drupal/project", - "full_name": "drupal/project", - "version_drupal": "7.x-2.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "363", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "protected_forms", - "name": "drupal/protected_forms", - "full_name": "drupal/protected_forms", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-ecif", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "34584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "protected_node", - "name": "drupal/protected_node", - "full_name": "drupal/protected_node", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7828", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "psr0", - "name": "drupal/psr0", - "full_name": "drupal/psr0", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7845", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "publication_date", - "name": "drupal/publication_date", - "full_name": "drupal/publication_date", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2327", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "publication_date", - "name": "drupal/publication_date", - "full_name": "drupal/publication_date", - "version_drupal": "8.x-2.0-beta2", - "version": "^2.0-beta2", - "whitelist": "^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4523", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "publish_button", - "name": "drupal/publish_button", - "full_name": "drupal/publish_button", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2407", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge", - "name": "drupal/purge", - "full_name": "drupal/purge", - "version_drupal": "8.x-3.0-beta9", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2418", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge", - "name": "drupal/purge", - "full_name": "drupal/purge", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2419", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_control", - "name": "drupal/purge_control", - "full_name": "drupal/purge_control", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10643", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_everything_queuer", - "name": "drupal/purge_everything_queuer", - "full_name": "drupal/purge_everything_queuer", - "version_drupal": "1.1.0", - "version": "^1.1.0", - "whitelist": "^1.1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-esep", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "34619", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_queues", - "name": "drupal/purge_queues", - "full_name": "drupal/purge_queues", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "34579", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_users", - "name": "drupal/purge_users", - "full_name": "drupal/purge_users", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,digit-oesa,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8754", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "purge_users", - "name": "drupal/purge_users", - "full_name": "drupal/purge_users", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "8963", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "querypath", - "name": "drupal/querypath", - "full_name": "drupal/querypath", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "364", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "questionnaire", - "name": "drupal/questionnaire", - "full_name": "drupal/questionnaire", - "version_drupal": "7.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7963", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "questions_answers", - "name": "drupal/questions_answers", - "full_name": "drupal/questions_answers", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4520", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "queue_mail", - "name": "drupal/queue_mail", - "full_name": "drupal/queue_mail", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "365", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "queue_mail", - "name": "drupal/queue_mail", - "full_name": "drupal/queue_mail", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9944", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "queue_ui", - "name": "drupal/queue_ui", - "full_name": "drupal/queue_ui", - "version_drupal": "8.x-2.0", - "version": "^2.0||^3.1", - "whitelist": "^2.0||^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2348", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "queue_ui", - "name": "drupal/queue_ui", - "full_name": "drupal/queue_ui", - "version_drupal": "7.x-2.0-rc2", - "version": "^2.0-rc2", - "whitelist": "^2.0-rc2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5947", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quickedit", - "name": "drupal/quickedit", - "full_name": "drupal/quickedit", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2352", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quick_node_clone", - "name": "drupal/quick_node_clone", - "full_name": "drupal/quick_node_clone", - "version_drupal": "8.x-1.14", - "version": "^1.15", - "whitelist": "^1.15", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17791", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quicktabs", - "name": "drupal/quicktabs", - "full_name": "drupal/quicktabs", - "version_drupal": "8.x-3.0-alpha2", - "version": "^3.0-alpha2", - "whitelist": "^3.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2500", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quicktabs", - "name": "drupal/quicktabs", - "full_name": "drupal/quicktabs", - "version_drupal": "7.x-3.8", - "version": "^3.8", - "whitelist": "^3.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "366", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quiz", - "name": "drupal/quiz", - "full_name": "drupal/quiz", - "version_drupal": "6.0.0-alpha6", - "version": "^6.0.0-alpha4", - "whitelist": "^6.0.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17134", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quiz", - "name": "drupal/quiz", - "full_name": "drupal/quiz", - "version_drupal": "7.x-5.2", - "version": "^5.2", - "whitelist": "^5.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "367", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "quote", - "name": "drupal/quote", - "full_name": "drupal/quote", - "version_drupal": "7.x-3.0-rc4", - "version": "^3.0-rc4", - "whitelist": "^3.0-rc4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12744", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "r4032login", - "name": "drupal/r4032login", - "full_name": "drupal/r4032login", - "version_drupal": "8.x-2.0.0", - "version": "^1.1|^2.0.0", - "whitelist": "^1.1|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2350", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "r4032login", - "name": "drupal/r4032login", - "full_name": "drupal/r4032login", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "368", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rabbit_hole", - "name": "drupal/rabbit_hole", - "full_name": "drupal/rabbit_hole", - "version_drupal": "8.x-1.0-beta10", - "version": "^1.0-beta7", - "whitelist": "^1.0-beta7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2392", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rabbit_hole", - "name": "drupal/rabbit_hole", - "full_name": "drupal/rabbit_hole", - "version_drupal": "7.x-2.25", - "version": "^2.25", - "whitelist": "^2.25", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "369", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "radioactivity", - "name": "drupal/radioactivity", - "full_name": "drupal/radioactivity", - "version_drupal": "7.x-2.10", - "version": "^2.10", - "whitelist": "^2.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "370", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "radioactivity", - "name": "drupal/radioactivity", - "full_name": "drupal/radioactivity", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0-beta1", - "whitelist": "^3.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "rtd-rai", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6468", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "range", - "name": "drupal/range", - "full_name": "drupal/range", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17137", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rate", - "name": "drupal/rate", - "full_name": "drupal/rate", - "version_drupal": "3.0.1", - "version": "^3.0.1", - "whitelist": "^3.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-epale,rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x,10.x", - "usage": "Free", - "nid": "2949", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rate", - "name": "drupal/rate", - "full_name": "drupal/rate", - "version_drupal": "7.x-1.7", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "371", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rdf_entity", - "name": "drupal/rdf_entity", - "full_name": "drupal/rdf_entity", - "version_drupal": "8.x-1.0-alpha1", - "version": "^1.0-alpha1||^2.0.0-alpha1", - "whitelist": "^1.0-alpha1||^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "564", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rdf_meta_entity", - "name": "drupal/rdf_meta_entity", - "full_name": "drupal/rdf_meta_entity", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "16839", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "readmore", - "name": "drupal/readmore", - "full_name": "drupal/readmore", - "version_drupal": "2.0.0-alpha1", - "version": "^2.0.0-alpha1", - "whitelist": "^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "25394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "readonlymode", - "name": "drupal/readonlymode", - "full_name": "drupal/readonlymode", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "8481", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "real_aes", - "name": "drupal/real_aes", - "full_name": "drupal/real_aes", - "version_drupal": "8.x-2.3", - "version": "^2.3||^2.4", - "whitelist": "^2.3||^2.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8252", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "realname", - "name": "drupal/realname", - "full_name": "drupal/realname", - "version_drupal": "2.0.0-beta1", - "version": "^2.0.0-beta1", - "whitelist": "^2.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "27690", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "realname", - "name": "drupal/realname", - "full_name": "drupal/realname", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "372", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rebuild_cache_access", - "name": "drupal/rebuild_cache_access", - "full_name": "drupal/rebuild_cache_access", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2487", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recaptcha", - "name": "drupal/recaptcha", - "full_name": "drupal/recaptcha", - "version_drupal": "7.x-2.3", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2523", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recaptcha", - "name": "drupal/recaptcha", - "full_name": "drupal/recaptcha", - "version_drupal": "8.x-3.0", - "version": "^2.5 || ^3.0", - "whitelist": "^2.5 || ^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4916", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recaptcha_v3", - "name": "drupal/recaptcha_v3", - "full_name": "drupal/recaptcha_v3", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2546", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recently_read", - "name": "drupal/recently_read", - "full_name": "drupal/recently_read", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14803", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "recreate_block_content", - "name": "drupal/recreate_block_content", - "full_name": "drupal/recreate_block_content", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "chafea-mtfe", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5974", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redirect", - "name": "drupal/redirect", - "full_name": "drupal/redirect", - "version_drupal": "7.x-1.0-rc4", - "version": "^1.0-rc4", - "whitelist": "^1.0-rc4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "373", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redirect", - "name": "drupal/redirect", - "full_name": "drupal/redirect", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "1", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "565", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redirect_after_login", - "name": "drupal/redirect_after_login", - "full_name": "drupal/redirect_after_login", - "version_drupal": "8.x-2.6", - "version": "^2.6 ", - "whitelist": "^2.6 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3168", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "redis", - "name": "drupal/redis", - "full_name": "drupal/redis", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "recommended", - "nid": "2376", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "reference_option_limit", - "name": "drupal/reference_option_limit", - "full_name": "drupal/reference_option_limit", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5938", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "references", - "name": "drupal/references", - "full_name": "drupal/references", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2448", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "references_dialog", - "name": "drupal/references_dialog", - "full_name": "drupal/references_dialog", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "374", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "registration", - "name": "drupal/registration", - "full_name": "drupal/registration", - "version_drupal": "3.0.0-beta1", - "version": "^3.0.0-beta1", - "whitelist": "^3.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-esma", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "35827", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "registration", - "name": "drupal/registration", - "full_name": "drupal/registration", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "376", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "registry_autoload", - "name": "drupal/registry_autoload", - "full_name": "drupal/registry_autoload", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "377", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "registryonsteroids", - "name": "drupal/registryonsteroids", - "full_name": "drupal/registryonsteroids", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "378", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "reg_with_pic", - "name": "drupal/reg_with_pic", - "full_name": "drupal/reg_with_pic", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "375", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "relation", - "name": "drupal/relation", - "full_name": "drupal/relation", - "version_drupal": "7.x-1.0", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "379", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remote_file_source", - "name": "drupal/remote_file_source", - "full_name": "drupal/remote_file_source", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-vto", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7128", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remote_stream_wrapper", - "name": "drupal/remote_stream_wrapper", - "full_name": "drupal/remote_stream_wrapper", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "380", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remote_stream_wrapper", - "name": "drupal/remote_stream_wrapper", - "full_name": "drupal/remote_stream_wrapper", - "version_drupal": "8.x-1.3", - "version": "^1.5||^2.0", - "whitelist": "^1.5||^2.0", - "blacklist": false, - "secure": "1.6", - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "566", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remove_duplicates", - "name": "drupal/remove_duplicates", - "full_name": "drupal/remove_duplicates", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "381", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "remove_http_headers", - "name": "drupal/remove_http_headers", - "full_name": "drupal/remove_http_headers", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5623", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rename_admin_paths", - "name": "drupal/rename_admin_paths", - "full_name": "drupal/rename_admin_paths", - "version_drupal": "7.x-2.3", - "version": "^2.4", - "whitelist": "^2.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "8267", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate", - "name": "drupal/replicate", - "full_name": "drupal/replicate", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3169", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate", - "name": "drupal/replicate", - "full_name": "drupal/replicate", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "382", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate_field_collection", - "name": "drupal/replicate_field_collection", - "full_name": "drupal/replicate_field_collection", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17574", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate_paragraphs", - "name": "drupal/replicate_paragraphs", - "full_name": "drupal/replicate_paragraphs", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "615", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "replicate_ui", - "name": "drupal/replicate_ui", - "full_name": "drupal/replicate_ui", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7165", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "required_by_role", - "name": "drupal/required_by_role", - "full_name": "drupal/required_by_role", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "383", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "reroute_email", - "name": "drupal/reroute_email", - "full_name": "drupal/reroute_email", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4168", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "reroute_email", - "name": "drupal/reroute_email", - "full_name": "drupal/reroute_email", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,c4dweb,esma-webst,just-emnies", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5619", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_background_image", - "name": "drupal/responsive_background_image", - "full_name": "drupal/responsive_background_image", - "version_drupal": "2.0.0-beta0", - "version": "^2.0.0-beta0", - "whitelist": "^2.0.0-beta0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x", - "usage": "Free", - "nid": "4094", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_favicons", - "name": "drupal/responsive_favicons", - "full_name": "drupal/responsive_favicons", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2413", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_menus", - "name": "drupal/responsive_menus", - "full_name": "drupal/responsive_menus", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7959", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_tables_filter", - "name": "drupal/responsive_tables_filter", - "full_name": "drupal/responsive_tables_filter", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "8453", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "responsive_tables_filter", - "name": "drupal/responsive_tables_filter", - "full_name": "drupal/responsive_tables_filter", - "version_drupal": "8.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-qa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8554", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "restful", - "name": "drupal/restful", - "full_name": "drupal/restful", - "version_drupal": "7.x-2.17", - "version": "^2.17", - "whitelist": "^2.17", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5913", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "restrict_ip", - "name": "drupal/restrict_ip", - "full_name": "drupal/restrict_ip", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8258", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "restui", - "name": "drupal/restui", - "full_name": "drupal/restui", - "version_drupal": "8.x-1.17", - "version": "^1.17", - "whitelist": "^1.17", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "digit-qa,eacea-epale", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "1950", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rest_views", - "name": "drupal/rest_views", - "full_name": "drupal/rest_views", - "version_drupal": "8.x-2.0.0", - "version": "^2.0.0", - "whitelist": "^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6466", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "retina_images", - "name": "drupal/retina_images", - "full_name": "drupal/retina_images", - "version_drupal": "7.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "384", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "revisioning", - "name": "drupal/revisioning", - "full_name": "drupal/revisioning", - "version_drupal": "7.x-1.9", - "version": "^1.9", - "whitelist": "^1.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2541", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "robotstxt", - "name": "drupal/robotstxt", - "full_name": "drupal/robotstxt", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "385", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "robotstxt", - "name": "drupal/robotstxt", - "full_name": "drupal/robotstxt", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5456", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "roleassign", - "name": "drupal/roleassign", - "full_name": "drupal/roleassign", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "388", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "roleassign", - "name": "drupal/roleassign", - "full_name": "drupal/roleassign", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "567", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_delegation", - "name": "drupal/role_delegation", - "full_name": "drupal/role_delegation", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2393", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_delegation", - "name": "drupal/role_delegation", - "full_name": "drupal/role_delegation", - "version_drupal": "7.x-1.2", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "386", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_export", - "name": "drupal/role_export", - "full_name": "drupal/role_export", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "387", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_expose", - "name": "drupal/role_expose", - "full_name": "drupal/role_expose", - "version_drupal": "2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13910", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "role_weights", - "name": "drupal/role_weights", - "full_name": "drupal/role_weights", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2654", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules", - "name": "drupal/rules", - "full_name": "drupal/rules", - "version_drupal": "8.x-3.0-alpha5", - "version": "^3.0-alpha5", - "whitelist": "^3.0-alpha5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2442", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules", - "name": "drupal/rules", - "full_name": "drupal/rules", - "version_drupal": "7.x-2.12", - "version": "^2.12", - "whitelist": "^2.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "389", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules_conditional", - "name": "drupal/rules_conditional", - "full_name": "drupal/rules_conditional", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "390", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules_link", - "name": "drupal/rules_link", - "full_name": "drupal/rules_link", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "391", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "rules_token", - "name": "drupal/rules_token", - "full_name": "drupal/rules_token", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2476", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "salesforce", - "name": "drupal/salesforce", - "full_name": "drupal/salesforce", - "version_drupal": "5.0.0", - "version": "^5.0.0", - "whitelist": "^5.0.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x", - "usage": "Free", - "nid": "23312", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "samlauth", - "name": "drupal/samlauth", - "full_name": "drupal/samlauth", - "version_drupal": "8.x-3.0-rc2", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4568", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "save_draft", - "name": "drupal/save_draft", - "full_name": "drupal/save_draft", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2542", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scanner", - "name": "drupal/scanner", - "full_name": "drupal/scanner", - "version_drupal": "7.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "392", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduled_delete", - "name": "drupal/scheduled_delete", - "full_name": "drupal/scheduled_delete", - "version_drupal": "8.x-1.3", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2519", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduler", - "name": "drupal/scheduler", - "full_name": "drupal/scheduler", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2377", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduler", - "name": "drupal/scheduler", - "full_name": "drupal/scheduler", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "393", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduler_content_moderation_integration", - "name": "drupal/scheduler_content_moderation_integration", - "full_name": "drupal/scheduler_content_moderation_integration", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2395", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scheduler_workbench", - "name": "drupal/scheduler_workbench", - "full_name": "drupal/scheduler_workbench", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema", - "name": "drupal/schema", - "full_name": "drupal/schema", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-vto,jpt", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7087", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_digital_document", - "name": "drupal/schema_digital_document", - "full_name": "drupal/schema_digital_document", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10890", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_metatag", - "name": "drupal/schema_metatag", - "full_name": "drupal/schema_metatag", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "395", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_metatag", - "name": "drupal/schema_metatag", - "full_name": "drupal/schema_metatag", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4561", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schema_social_media_posting", - "name": "drupal/schema_social_media_posting", - "full_name": "drupal/schema_social_media_posting", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10888", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "schemata", - "name": "drupal/schemata", - "full_name": "drupal/schemata", - "version_drupal": "8.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "dg-cnect-cybersecurity-atlas", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25619", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "scrollup", - "name": "drupal/scrollup", - "full_name": "drupal/scrollup", - "version_drupal": "3.0.0", - "version": "^3.0.0", - "whitelist": "^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13123", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search404", - "name": "drupal/search404", - "full_name": "drupal/search404", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "3163", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api", - "name": "drupal/search_api", - "full_name": "drupal/search_api", - "version_drupal": "7.x-1.17", - "version": "^1.18", - "whitelist": "^1.18", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "396", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api", - "name": "drupal/search_api", - "full_name": "drupal/search_api", - "version_drupal": "8.x-1.14", - "version": "1.13 || ^1.14", - "whitelist": "1.13 || ^1.14", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "607", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_attachments", - "name": "drupal/search_api_attachments", - "full_name": "drupal/search_api_attachments", - "version_drupal": "8.x-1.0-beta15", - "version": "^1.0-beta18||^9.0", - "whitelist": "^1.0-beta18||^9.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_attachments", - "name": "drupal/search_api_attachments", - "full_name": "drupal/search_api_attachments", - "version_drupal": "7.x-1.14", - "version": "^1.19", - "whitelist": "^1.19", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "397", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_autocomplete", - "name": "drupal/search_api_autocomplete", - "full_name": "drupal/search_api_autocomplete", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2354", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_autocomplete", - "name": "drupal/search_api_autocomplete", - "full_name": "drupal/search_api_autocomplete", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "608", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_db", - "name": "drupal/search_api_db", - "full_name": "drupal/search_api_db", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "398", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_et", - "name": "drupal/search_api_et", - "full_name": "drupal/search_api_et", - "version_drupal": "7.x-2.0-alpha7", - "version": "^2.0-alpha7", - "whitelist": "^2.0-alpha7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "399", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_exclude", - "name": "drupal/search_api_exclude", - "full_name": "drupal/search_api_exclude", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "400", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_exclude_entity", - "name": "drupal/search_api_exclude_entity", - "full_name": "drupal/search_api_exclude_entity", - "version_drupal": "8.x-1.3", - "version": "^1.0 || ^1.3", - "whitelist": "^1.0 || ^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7848", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_fast", - "name": "drupal/search_api_fast", - "full_name": "drupal/search_api_fast", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ema", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2355", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_glossary", - "name": "drupal/search_api_glossary", - "full_name": "drupal/search_api_glossary", - "version_drupal": "8.x-4.1", - "version": "^4.1", - "whitelist": "^4.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11167", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_glossary", - "name": "drupal/search_api_glossary", - "full_name": "drupal/search_api_glossary", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "401", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_location", - "name": "drupal/search_api_location", - "full_name": "drupal/search_api_location", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7107", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_page", - "name": "drupal/search_api_page", - "full_name": "drupal/search_api_page", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-ecsel,empl-sfc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6927", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_saved_searches", - "name": "drupal/search_api_saved_searches", - "full_name": "drupal/search_api_saved_searches", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "402", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_solr", - "name": "drupal/search_api_solr", - "full_name": "drupal/search_api_solr", - "version_drupal": "7.x-1.10", - "version": "^1.14", - "whitelist": "^1.14", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "403", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_solr", - "name": "drupal/search_api_solr", - "full_name": "drupal/search_api_solr", - "version_drupal": " 8.x-4.1.11", - "version": "2.2 || ^3.9 || ^4.1.11", - "whitelist": "2.2 || ^3.9 || ^4.1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4684", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_solr_overrides", - "name": "drupal/search_api_solr_overrides", - "full_name": "drupal/search_api_solr_overrides", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "404", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_sorts", - "name": "drupal/search_api_sorts", - "full_name": "drupal/search_api_sorts", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "405", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_sorts", - "name": "drupal/search_api_sorts", - "full_name": "drupal/search_api_sorts", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4565", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_sorts_widget", - "name": "drupal/search_api_sorts_widget", - "full_name": "drupal/search_api_sorts_widget", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "406", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_sorts_widget", - "name": "drupal/search_api_sorts_widget", - "full_name": "drupal/search_api_sorts_widget", - "version_drupal": "1.0.0-beta3", - "version": "^1.0.0-beta3", - "whitelist": "^1.0.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9009", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_spellcheck", - "name": "drupal/search_api_spellcheck", - "full_name": "drupal/search_api_spellcheck", - "version_drupal": "8.x-3.0-beta1", - "version": "^3.0@beta|^4.0.0", - "whitelist": "^3.0@beta|^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4683", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_spellcheck", - "name": "drupal/search_api_spellcheck", - "full_name": "drupal/search_api_spellcheck", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5575", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_api_view_modes", - "name": "drupal/search_api_view_modes", - "full_name": "drupal/search_api_view_modes", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "407", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_autocomplete", - "name": "drupal/search_autocomplete", - "full_name": "drupal/search_autocomplete", - "version_drupal": "7.x-4.9", - "version": "^4.9", - "whitelist": "^4.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "609", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_facetapi", - "name": "drupal/search_facetapi", - "full_name": "drupal/search_facetapi", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12735", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "search_files", - "name": "drupal/search_files", - "full_name": "drupal/search_files", - "version_drupal": "7.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "fchju", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7508", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "seckit", - "name": "drupal/seckit", - "full_name": "drupal/seckit", - "version_drupal": "8.x-1.2", - "version": "^1.2|^2.0.0", - "whitelist": "^1.2|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "recommended", - "nid": "2453", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "seckit", - "name": "drupal/seckit", - "full_name": "drupal/seckit", - "version_drupal": "7.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "recommended", - "nid": "2462", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "security_questions", - "name": "drupal/security_questions", - "full_name": "drupal/security_questions", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2660", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select2", - "name": "drupal/select2", - "full_name": "drupal/select2", - "version_drupal": "8.x-1.8", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2543", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select2_all", - "name": "drupal/select2_all", - "full_name": "drupal/select2_all", - "version_drupal": "8.x-1.0-alpha6", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ema, ema-upd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2544", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select2widget", - "name": "drupal/select2widget", - "full_name": "drupal/select2widget", - "version_drupal": "7.x-2.9", - "version": "^2.9", - "whitelist": "^2.9", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5781", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "selective_better_exposed_filters", - "name": "drupal/selective_better_exposed_filters", - "full_name": "drupal/selective_better_exposed_filters", - "version_drupal": "8.x-2.0-beta6", - "version": "^2.0-beta6", - "whitelist": "^2.0-beta6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22362", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select_or_other", - "name": "drupal/select_or_other", - "full_name": "drupal/select_or_other", - "version_drupal": "7.x-2.24", - "version": "^2.24|^3.0-alpha3", - "whitelist": "^2.24|^3.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "408", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select_or_other", - "name": "drupal/select_or_other", - "full_name": "drupal/select_or_other", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4||^4.0.0", - "whitelist": "^1.0-alpha4||^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4095", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "select_translation", - "name": "drupal/select_translation", - "full_name": "drupal/select_translation", - "version_drupal": "8.x-1.0", - "version": "^1.0|^2.0.0-alpha1", - "whitelist": "^1.0|^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4562", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sendinblue", - "name": "drupal/sendinblue", - "full_name": "drupal/sendinblue", - "version_drupal": "8.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4917", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "seo_checklist", - "name": "drupal/seo_checklist", - "full_name": "drupal/seo_checklist", - "version_drupal": "8.x-4.1", - "version": "^4.0", - "whitelist": "^4.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2512", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "serial", - "name": "drupal/serial", - "full_name": "drupal/serial", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "409", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "serial", - "name": "drupal/serial", - "full_name": "drupal/serial", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9445", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "service_links", - "name": "drupal/service_links", - "full_name": "drupal/service_links", - "version_drupal": "7.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "410", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "services", - "name": "drupal/services", - "full_name": "drupal/services", - "version_drupal": "7.x-3.24", - "version": "^3.26", - "whitelist": "^3.26", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "412", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "services_entity", - "name": "drupal/services_entity", - "full_name": "drupal/services_entity", - "version_drupal": "7.x-2.0-alpha8", - "version": "^2.0-alpha8", - "whitelist": "^2.0-alpha8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "comm-info,comm-cwt2019,comm-info-training", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "3771", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "services_views", - "name": "drupal/services_views", - "full_name": "drupal/services_views", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "411", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "session_api", - "name": "drupal/session_api", - "full_name": "drupal/session_api", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "413", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "session_cache", - "name": "drupal/session_cache", - "full_name": "drupal/session_cache", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7941", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sharethis", - "name": "drupal/sharethis", - "full_name": "drupal/sharethis", - "version_drupal": "7.x-2.13", - "version": "^2.13", - "whitelist": "^2.13", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "bbi", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6170", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shariff", - "name": "drupal/shariff", - "full_name": "drupal/shariff", - "version_drupal": "8.x-1.7", - "version": "^1.5|^1.7", - "whitelist": "^1.5|^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5407", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shield", - "name": "drupal/shield", - "full_name": "drupal/shield", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "587", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shortcode", - "name": "drupal/shortcode", - "full_name": "drupal/shortcode", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "27265", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shortcode", - "name": "drupal/shortcode", - "full_name": "drupal/shortcode", - "version_drupal": "7.x-2.27", - "version": "2.27", - "whitelist": "2.27", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5554", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "show_email", - "name": "drupal/show_email", - "full_name": "drupal/show_email", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "25699", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shs", - "name": "drupal/shs", - "full_name": "drupal/shs", - "version_drupal": "7.x-1.6", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "414", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "shs", - "name": "drupal/shs", - "full_name": "drupal/shs", - "version_drupal": "2.0.0-rc3", - "version": "^1.0-alpha5|^2.0.0-rc2", - "whitelist": "^1.0-alpha5|^2.0.0-rc2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4609", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "signup", - "name": "drupal/signup", - "full_name": "drupal/signup", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "415", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simpleantispam", - "name": "drupal/simpleantispam", - "full_name": "drupal/simpleantispam", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5426", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_block", - "name": "drupal/simple_block", - "full_name": "drupal/simple_block", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2321", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplecrop", - "name": "drupal/simplecrop", - "full_name": "drupal/simplecrop", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7510", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_dialog", - "name": "drupal/simple_dialog", - "full_name": "drupal/simple_dialog", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5925", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_glossary", - "name": "drupal/simple_glossary", - "full_name": "drupal/simple_glossary", - "version_drupal": "8.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2274", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplehtmldom", - "name": "drupal/simplehtmldom", - "full_name": "drupal/simplehtmldom", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7957", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_menu_permissions", - "name": "drupal/simple_menu_permissions", - "full_name": "drupal/simple_menu_permissions", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "19967", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews", - "name": "drupal/simplenews", - "full_name": "drupal/simplenews", - "version_drupal": "8.x-2.0-beta", - "version": "1.0-beta2 || ^2.0-beta || ^3.0.0-beta1", - "whitelist": "1.0-beta2 || ^2.0-beta || ^3.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2925", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews", - "name": "drupal/simplenews", - "full_name": "drupal/simplenews", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "416", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews_og", - "name": "drupal/simplenews_og", - "full_name": "drupal/simplenews_og", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "417", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews_scheduler", - "name": "drupal/simplenews_scheduler", - "full_name": "drupal/simplenews_scheduler", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2417", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews_statistics", - "name": "drupal/simplenews_statistics", - "full_name": "drupal/simplenews_statistics", - "version_drupal": "7.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "418", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplenews_stats", - "name": "drupal/simplenews_stats", - "full_name": "drupal/simplenews_stats", - "version_drupal": "3.0.0-beta3", - "version": "^3.0.0-beta3", - "whitelist": "^3.0.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "28661", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_oauth", - "name": "drupal/simple_oauth", - "full_name": "drupal/simple_oauth", - "version_drupal": "5.2.0", - "version": "^5.0||^6.0.0-alpha1", - "whitelist": "^5.0||^6.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4838", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_oauth_fallback_header", - "name": "drupal/simple_oauth_fallback_header", - "full_name": "drupal/simple_oauth_fallback_header", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eacea-epale", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8089", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_popup_blocks", - "name": "drupal/simple_popup_blocks", - "full_name": "drupal/simple_popup_blocks", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2958", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_responsive_table", - "name": "drupal/simple_responsive_table", - "full_name": "drupal/simple_responsive_table", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14873", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simpler_quickedit", - "name": "drupal/simpler_quickedit", - "full_name": "drupal/simpler_quickedit", - "version_drupal": "1.0.2", - "version": "^1.0.2", - "whitelist": "^1.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "19673", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplesamlphp_auth", - "name": "drupal/simplesamlphp_auth", - "full_name": "drupal/simplesamlphp_auth", - "version_drupal": "7.x-2.0-alpha2", - "version": "^2.0-alpha2", - "whitelist": "^2.0-alpha2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd,esma-extranet,esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6761", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_sitemap", - "name": "drupal/simple_sitemap", - "full_name": "drupal/simple_sitemap", - "version_drupal": "8.x-3.10", - "version": "^3.11||^4.0", - "whitelist": "^3.11||^4.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4806", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_timeline", - "name": "drupal/simple_timeline", - "full_name": "drupal/simple_timeline", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11175", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simple_timeline", - "name": "drupal/simple_timeline", - "full_name": "drupal/simple_timeline", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eiopa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2411", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplified_formats", - "name": "drupal/simplified_formats", - "full_name": "drupal/simplified_formats", - "version_drupal": "7.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2312", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplified_menu_admin", - "name": "drupal/simplified_menu_admin", - "full_name": "drupal/simplified_menu_admin", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7950", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplify", - "name": "drupal/simplify", - "full_name": "drupal/simplify", - "version_drupal": "7.x-3.3", - "version": "^3.3", - "whitelist": "^3.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "419", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "simplify_menu", - "name": "drupal/simplify_menu", - "full_name": "drupal/simplify_menu", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4546", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "single_datetime", - "name": "drupal/single_datetime", - "full_name": "drupal/single_datetime", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5393", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "site_alert", - "name": "drupal/site_alert", - "full_name": "drupal/site_alert", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": "<1.2", - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3550", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "siteimprove", - "name": "drupal/siteimprove", - "full_name": "drupal/siteimprove", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "ema", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "4066", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sitemap", - "name": "drupal/sitemap", - "full_name": "drupal/sitemap", - "version_drupal": "8.x-1.5", - "version": "^1.5|^2.0-beta2", - "whitelist": "^1.5|^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2378", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "site_map", - "name": "drupal/site_map", - "full_name": "drupal/site_map", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "420", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "site_verify", - "name": "drupal/site_verify", - "full_name": "drupal/site_verify", - "version_drupal": "8.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "joinup,digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10887", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick", - "name": "drupal/slick", - "full_name": "drupal/slick", - "version_drupal": "8.x-2.1", - "version": "^2.1|1.1", - "whitelist": "^2.1|1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2435", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_entityreference", - "name": "drupal/slick_entityreference", - "full_name": "drupal/slick_entityreference", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6024", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_media", - "name": "drupal/slick_media", - "full_name": "drupal/slick_media", - "version_drupal": "8.x-2.0-alpha3", - "version": "^2.0-alpha3", - "whitelist": "^2.0-alpha3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6869", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_paragraphs", - "name": "drupal/slick_paragraphs", - "full_name": "drupal/slick_paragraphs", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2935", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_views", - "name": "drupal/slick_views", - "full_name": "drupal/slick_views", - "version_drupal": "8.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2421", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slick_views", - "name": "drupal/slick_views", - "full_name": "drupal/slick_views", - "version_drupal": "7.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7019", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "slim_select", - "name": "drupal/slim_select", - "full_name": "drupal/slim_select", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11386", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_date", - "name": "drupal/smart_date", - "full_name": "drupal/smart_date", - "version_drupal": "3.5.1", - "version": "^3.5.1", - "whitelist": "^3.5.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22510", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_ip", - "name": "drupal/smart_ip", - "full_name": "drupal/smart_ip", - "version_drupal": "8.x-4.2", - "version": "^4.2", - "whitelist": "^4.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22363", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_ip", - "name": "drupal/smart_ip", - "full_name": "drupal/smart_ip", - "version_drupal": "7.x-2.56", - "version": "^2.56", - "whitelist": "^2.56", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2467", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_sql_idmap", - "name": "drupal/smart_sql_idmap", - "full_name": "drupal/smart_sql_idmap", - "version_drupal": "1.0.0-beta1", - "version": "^1.0.0-beta1", - "whitelist": "^1.0.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "regio-ewrc-d8", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6842", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_trim", - "name": "drupal/smart_trim", - "full_name": "drupal/smart_trim", - "version_drupal": "8.x-1.2", - "version": "^1.2||^2.0.0", - "whitelist": "^1.2||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "2311", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smart_trim", - "name": "drupal/smart_trim", - "full_name": "drupal/smart_trim", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "421", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smtp", - "name": "drupal/smtp", - "full_name": "drupal/smtp", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "esma-webst,taxud-pics,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2659", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "smtp", - "name": "drupal/smtp", - "full_name": "drupal/smtp", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2947", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sneak_preview", - "name": "drupal/sneak_preview", - "full_name": "drupal/sneak_preview", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2475", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social", - "name": "drupal/social", - "full_name": "drupal/social", - "version_drupal": "8.x-8.7", - "version": "^8.10", - "whitelist": "^8.10", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ener-scm", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2970", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_api", - "name": "drupal/social_api", - "full_name": "drupal/social_api", - "version_drupal": "8.x-3.0.0", - "version": "^1.1|^3.0.0", - "whitelist": "^1.1|^3.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5408", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_auth", - "name": "drupal/social_auth", - "full_name": "drupal/social_auth", - "version_drupal": "8.x-3.0.1", - "version": "^1.0|^3.0.1", - "whitelist": "^1.0|^3.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5409", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_course", - "name": "drupal/social_course", - "full_name": "drupal/social_course", - "version_drupal": "3.1.1", - "version": "^3.1.1", - "whitelist": "^3.1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8404", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "socialfield", - "name": "drupal/socialfield", - "full_name": "drupal/socialfield", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "423", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_geolocation", - "name": "drupal/social_geolocation", - "full_name": "drupal/social_geolocation", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7112", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_kpi_lite", - "name": "drupal/social_kpi_lite", - "full_name": "drupal/social_kpi_lite", - "version_drupal": "8.x-1.0-alpha10", - "version": "^1.0-alpha10", - "whitelist": "^1.0-alpha10", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c,taxud-opensocial-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8257", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_media", - "name": "drupal/social_media", - "full_name": "drupal/social_media", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "600", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_media_links", - "name": "drupal/social_media_links", - "full_name": "drupal/social_media_links", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "422", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_media_links", - "name": "drupal/social_media_links", - "full_name": "drupal/social_media_links", - "version_drupal": "8.x-2.8", - "version": "^2.8", - "whitelist": "^2.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5997", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_node_statistics", - "name": "drupal/social_node_statistics", - "full_name": "drupal/social_node_statistics", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "opensocial,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7113", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_profile_field", - "name": "drupal/social_profile_field", - "full_name": "drupal/social_profile_field", - "version_drupal": "8.x-0.2", - "version": "^0.2", - "whitelist": "^0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5999", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_pwa", - "name": "drupal/social_pwa", - "full_name": "drupal/social_pwa", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-opensocial-pilot,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7114", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_search_autocomplete", - "name": "drupal/social_search_autocomplete", - "full_name": "drupal/social_search_autocomplete", - "version_drupal": "1.2.1", - "version": "^1.2.1", - "whitelist": "^1.2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "opensocial,ener-scmcs,jrc-opensocial-e4c", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7115", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_tour", - "name": "drupal/social_tour", - "full_name": "drupal/social_tour", - "version_drupal": "1.0.0-alpha2", - "version": "^1.0.0-alpha2", - "whitelist": "^1.0.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22348", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "social_wall", - "name": "drupal/social_wall", - "full_name": "drupal/social_wall", - "version_drupal": "8x-2.1.7", - "version": "^2.1.7", - "whitelist": "^2.1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2961", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sophron", - "name": "drupal/sophron", - "full_name": "drupal/sophron", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2396", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sortableviews", - "name": "drupal/sortableviews", - "full_name": "drupal/sortableviews", - "version_drupal": "8.x-1.0-beta1 ", - "version": "^1.0-beta1 ", - "whitelist": "^1.0-beta1 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5397", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "spamspan", - "name": "drupal/spamspan", - "full_name": "drupal/spamspan", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4636", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "sparql_entity_storage", - "name": "drupal/sparql_entity_storage", - "full_name": "drupal/sparql_entity_storage", - "version_drupal": "8.x-1.0-alpha9", - "version": "dev-empty-module || ^1.0-alpha9 || ^10 || ^2.0-alpha1", - "whitelist": "dev-empty-module || ^1.0-alpha9 || ^10 || ^2.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6274", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "special_menu_items", - "name": "drupal/special_menu_items", - "full_name": "drupal/special_menu_items", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "424", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stability_features", - "name": "drupal/stability_features", - "full_name": "drupal/stability_features", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eac-bedigital", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5643", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stability_import_blocks", - "name": "drupal/stability_import_blocks", - "full_name": "drupal/stability_import_blocks", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eac-bedigital", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5642", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stability_import_nodes", - "name": "drupal/stability_import_nodes", - "full_name": "drupal/stability_import_nodes", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eac-bedigital", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5644", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stage_file_proxy", - "name": "drupal/stage_file_proxy", - "full_name": "drupal/stage_file_proxy", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "just-emnies", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "19233", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stage_file_proxy", - "name": "drupal/stage_file_proxy", - "full_name": "drupal/stage_file_proxy", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5417", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "starrating", - "name": "drupal/starrating", - "full_name": "drupal/starrating", - "version_drupal": "8.x-4.0-alpha2", - "version": "^4.0-alpha2", - "whitelist": "^4.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "601", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "starrating_formdisplay", - "name": "drupal/starrating_formdisplay", - "full_name": "drupal/starrating_formdisplay", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "602", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "state_machine", - "name": "drupal/state_machine", - "full_name": "drupal/state_machine", - "version_drupal": "7.x-2.6", - "version": "^2.6", - "whitelist": "^2.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17575", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "state_machine", - "name": "drupal/state_machine", - "full_name": "drupal/state_machine", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4781", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "statistics_counter", - "name": "drupal/statistics_counter", - "full_name": "drupal/statistics_counter", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "425", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stop_broken_link_in_body", - "name": "drupal/stop_broken_link_in_body", - "full_name": "drupal/stop_broken_link_in_body", - "version_drupal": "8.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "jrc-k4p", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2560", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "stringoverrides", - "name": "drupal/stringoverrides", - "full_name": "drupal/stringoverrides", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "irma,esma-eecsd,esma-extranet,esma-webst,taxud-pics,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "426", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "strongarm", - "name": "drupal/strongarm", - "full_name": "drupal/strongarm", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "427", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "structure_sync", - "name": "drupal/structure_sync", - "full_name": "drupal/structure_sync", - "version_drupal": "8.x-1.16", - "version": "^1.16|^2.0", - "whitelist": "^1.16|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2449", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "styleguide", - "name": "drupal/styleguide", - "full_name": "drupal/styleguide", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2270", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "style_management", - "name": "drupal/style_management", - "full_name": "drupal/style_management", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "chafea-mtfe", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6104", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subgroup", - "name": "drupal/subgroup", - "full_name": "drupal/subgroup", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4789", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "submenu_reorder", - "name": "drupal/submenu_reorder", - "full_name": "drupal/submenu_reorder", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "428", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subpathauto", - "name": "drupal/subpathauto", - "full_name": "drupal/subpathauto", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "25813", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subpathauto", - "name": "drupal/subpathauto", - "full_name": "drupal/subpathauto", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5394", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subscriptions", - "name": "drupal/subscriptions", - "full_name": "drupal/subscriptions", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "429", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "subscriptions_rules", - "name": "drupal/subscriptions_rules", - "full_name": "drupal/subscriptions_rules", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "430", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "superfish", - "name": "drupal/superfish", - "full_name": "drupal/superfish", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2273", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "superfish", - "name": "drupal/superfish", - "full_name": "drupal/superfish", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-demw", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7025", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "support", - "name": "drupal/support", - "full_name": "drupal/support", - "version_drupal": "7.x-1.0-rc2", - "version": "^1.0-rc2", - "whitelist": "^1.0-rc2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "431", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "support_token", - "name": "drupal/support_token", - "full_name": "drupal/support_token", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "432", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "support_views", - "name": "drupal/support_views", - "full_name": "drupal/support_views", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "433", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "svg_formatter", - "name": "drupal/svg_formatter", - "full_name": "drupal/svg_formatter", - "version_drupal": "8.x-1.14", - "version": "^1.17", - "whitelist": "^1.17", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3211", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "svg_image", - "name": "drupal/svg_image", - "full_name": "drupal/svg_image", - "version_drupal": "8.x-1.16", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "586", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "swiftmailer", - "name": "drupal/swiftmailer", - "full_name": "drupal/swiftmailer", - "version_drupal": "8.x-2.0", - "version": "^1.0-beta2|^2.0", - "whitelist": "^1.0-beta2|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2397", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "swiftmailer", - "name": "drupal/swiftmailer", - "full_name": "drupal/swiftmailer", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2952", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "symfony_mailer", - "name": "drupal/symfony_mailer", - "full_name": "drupal/symfony_mailer", - "version_drupal": "1.0.0-alpha4", - "version": "^1.0.0-alpha4|1.1.0-beta2", - "whitelist": "^1.0.0-alpha4|1.1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "12516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "system_stream_wrapper", - "name": "drupal/system_stream_wrapper", - "full_name": "drupal/system_stream_wrapper", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2410", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "table_element", - "name": "drupal/table_element", - "full_name": "drupal/table_element", - "version_drupal": "7.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "434", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tablefield", - "name": "drupal/tablefield", - "full_name": "drupal/tablefield", - "version_drupal": "8.x-2.2", - "version": "^2.2", - "whitelist": "^2.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "sfc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "18664", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tablefield", - "name": "drupal/tablefield", - "full_name": "drupal/tablefield", - "version_drupal": "7.x-3.6", - "version": "^3.6", - "whitelist": "^3.6", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-rim", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7032", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tablesorter", - "name": "drupal/tablesorter", - "full_name": "drupal/tablesorter", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "435", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tagclouds", - "name": "drupal/tagclouds", - "full_name": "drupal/tagclouds", - "version_drupal": "7.x-1.12", - "version": "^1.12", - "whitelist": "^1.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "436", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tamper", - "name": "drupal/tamper", - "full_name": "drupal/tamper", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_access_fix", - "name": "drupal/taxonomy_access_fix", - "full_name": "drupal/taxonomy_access_fix", - "version_drupal": "7.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "437", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_access_fix", - "name": "drupal/taxonomy_access_fix", - "full_name": "drupal/taxonomy_access_fix", - "version_drupal": "8.x-3.1", - "version": "^2.8 || ^3.1", - "whitelist": "^2.8 || ^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7849", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_autocomplete_permission", - "name": "drupal/taxonomy_autocomplete_permission", - "full_name": "drupal/taxonomy_autocomplete_permission", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2315", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_csv", - "name": "drupal/taxonomy_csv", - "full_name": "drupal/taxonomy_csv", - "version_drupal": "7.x-5.10", - "version": "^5.10", - "whitelist": "^5.10", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd,esma-extranet,esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "438", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_display", - "name": "drupal/taxonomy_display", - "full_name": "drupal/taxonomy_display", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "439", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_dupecheck", - "name": "drupal/taxonomy_dupecheck", - "full_name": "drupal/taxonomy_dupecheck", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-extranet,esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6769", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_import", - "name": "drupal/taxonomy_import", - "full_name": "drupal/taxonomy_import", - "version_drupal": "2.0.11", - "version": "^2.0.11", - "whitelist": "^2.0.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "35876", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_machine_name", - "name": "drupal/taxonomy_machine_name", - "full_name": "drupal/taxonomy_machine_name", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "440", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_machine_name", - "name": "drupal/taxonomy_machine_name", - "full_name": "drupal/taxonomy_machine_name", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6258", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_manager", - "name": "drupal/taxonomy_manager", - "full_name": "drupal/taxonomy_manager", - "version_drupal": "2.0.6", - "version": "^2.0.6", - "whitelist": "^2.0.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "15759", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_manager", - "name": "drupal/taxonomy_manager", - "full_name": "drupal/taxonomy_manager", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "441", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_menu", - "name": "drupal/taxonomy_menu", - "full_name": "drupal/taxonomy_menu", - "version_drupal": "8.x-3.5", - "version": "^3.5", - "whitelist": "^3.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13592", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_menu", - "name": "drupal/taxonomy_menu", - "full_name": "drupal/taxonomy_menu", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "442", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_orphanage", - "name": "drupal/taxonomy_orphanage", - "full_name": "drupal/taxonomy_orphanage", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7961", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_permissions", - "name": "drupal/taxonomy_permissions", - "full_name": "drupal/taxonomy_permissions", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "443", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "taxonomy_revision", - "name": "drupal/taxonomy_revision", - "full_name": "drupal/taxonomy_revision", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "444", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tb_megamenu", - "name": "drupal/tb_megamenu", - "full_name": "drupal/tb_megamenu", - "version_drupal": "7.x-1.0-beta5", - "version": "^1.0-rc6", - "whitelist": "^1.0-rc6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "445", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tb_megamenu", - "name": "drupal/tb_megamenu", - "full_name": "drupal/tb_megamenu", - "version_drupal": "8.x-1.0-rc3", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4577", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "telephone", - "name": "drupal/telephone", - "full_name": "drupal/telephone", - "version_drupal": "7.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "446", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_merge", - "name": "drupal/term_merge", - "full_name": "drupal/term_merge", - "version_drupal": "2.0.0-beta4", - "version": "^2.0.0-beta4", - "whitelist": "^2.0.0-beta4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-futurium", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x,10.x", - "usage": "Free", - "nid": "35196", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_merge", - "name": "drupal/term_merge", - "full_name": "drupal/term_merge", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "447", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_reference_change", - "name": "drupal/term_reference_change", - "full_name": "drupal/term_reference_change", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-futurium", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "35199", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_reference_filter_by_views", - "name": "drupal/term_reference_filter_by_views", - "full_name": "drupal/term_reference_filter_by_views", - "version_drupal": "7.x-2.0-beta2", - "version": "^2.0-beta2", - "whitelist": "^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "448", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_reference_tree", - "name": "drupal/term_reference_tree", - "full_name": "drupal/term_reference_tree", - "version_drupal": "7.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "449", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "term_reference_tree", - "name": "drupal/term_reference_tree", - "full_name": "drupal/term_reference_tree", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4564", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "terms_of_use", - "name": "drupal/terms_of_use", - "full_name": "drupal/terms_of_use", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2934", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "textformatter", - "name": "drupal/textformatter", - "full_name": "drupal/textformatter", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-jmh", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6537", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "text_with_summary", - "name": "drupal/text_with_summary", - "full_name": "drupal/text_with_summary", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "450", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tfa", - "name": "drupal/tfa", - "full_name": "drupal/tfa", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2481", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tfa", - "name": "drupal/tfa", - "full_name": "drupal/tfa", - "version_drupal": "8.x-1.0-alpha5 ", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3011", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tfa_basic", - "name": "drupal/tfa_basic", - "full_name": "drupal/tfa_basic", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2482", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "themekey", - "name": "drupal/themekey", - "full_name": "drupal/themekey", - "version_drupal": "7.x-3.4", - "version": "^3.4", - "whitelist": "^3.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-parcel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7035", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "theme_rule", - "name": "drupal/theme_rule", - "full_name": "drupal/theme_rule", - "version_drupal": "1.0.0", - "version": "^1.0.0", - "whitelist": "^1.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11324", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "time_field", - "name": "drupal/time_field", - "full_name": "drupal/time_field", - "version_drupal": "8.x-1.12", - "version": "^1.12|^2.0.0", - "whitelist": "^1.12|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "592", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "timelinr", - "name": "drupal/timelinr", - "full_name": "drupal/timelinr", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "451", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "title", - "name": "drupal/title", - "full_name": "drupal/title", - "version_drupal": "7.x-1.0-alpha9+1-dev", - "version": "^1.0-alpha9+1-dev", - "whitelist": "^1.0-alpha9+1-dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "452", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "title_length", - "name": "drupal/title_length", - "full_name": "drupal/title_length", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cim", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "23927", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt", - "name": "drupal/tmgmt", - "full_name": "drupal/tmgmt", - "version_drupal": "8.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2398", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt", - "name": "drupal/tmgmt", - "full_name": "drupal/tmgmt", - "version_drupal": "7.x-1.0-rc3", - "version": "^1.0-rc3", - "whitelist": "^1.0-rc3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "453", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt_cdt", - "name": "drupal/tmgmt_cdt", - "full_name": "drupal/tmgmt_cdt", - "version_drupal": "7.x-1.0-beta5", - "version": "^1.0-beta5", - "whitelist": "^1.0-beta5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "chafea,ecdc,efsa,chafea-agri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2420", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt_cdt", - "name": "drupal/tmgmt_cdt", - "full_name": "drupal/tmgmt_cdt", - "version_drupal": "8.x-1.0-beta8", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3572", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tmgmt_google", - "name": "drupal/tmgmt_google", - "full_name": "drupal/tmgmt_google", - "version_drupal": "7.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "454", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tocbot", - "name": "drupal/tocbot", - "full_name": "drupal/tocbot", - "version_drupal": "8.x-1.0-alpha2", - "version": "^1.0-alpha2 ", - "whitelist": "^1.0-alpha2 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tocify", - "name": "drupal/tocify", - "full_name": "drupal/tocify", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "455", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token", - "name": "drupal/token", - "full_name": "drupal/token", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "456", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token", - "name": "drupal/token", - "full_name": "drupal/token", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "569", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_custom", - "name": "drupal/token_custom", - "full_name": "drupal/token_custom", - "version_drupal": "7.x-2.0-beta3", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "458", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_embed_views", - "name": "drupal/token_embed_views", - "full_name": "drupal/token_embed_views", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "457", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_filter", - "name": "drupal/token_filter", - "full_name": "drupal/token_filter", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3812", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_filter", - "name": "drupal/token_filter", - "full_name": "drupal/token_filter", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "459", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_insert", - "name": "drupal/token_insert", - "full_name": "drupal/token_insert", - "version_drupal": "7.x-2.4", - "version": "^2.4", - "whitelist": "^2.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "460", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_language", - "name": "drupal/token_language", - "full_name": "drupal/token_language", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8425", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "token_tweaks", - "name": "drupal/token_tweaks", - "full_name": "drupal/token_tweaks", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eba", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "461", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "toolbar_themes", - "name": "drupal/toolbar_themes", - "full_name": "drupal/toolbar_themes", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2349", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tooltip_ckeditor", - "name": "drupal/tooltip_ckeditor", - "full_name": "drupal/tooltip_ckeditor", - "version_drupal": "4.0.0", - "version": "^4.0.0", - "whitelist": "^4.0.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22275", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "total_control", - "name": "drupal/total_control", - "full_name": "drupal/total_control", - "version_drupal": "3.0.3", - "version": "^3.0.3", - "whitelist": "^3.0.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "36365", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "track_field_changes", - "name": "drupal/track_field_changes", - "full_name": "drupal/track_field_changes", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "jpt", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2472", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "translatable_menu_link_uri", - "name": "drupal/translatable_menu_link_uri", - "full_name": "drupal/translatable_menu_link_uri", - "version_drupal": "8.x-1.2", - "version": "^1.2|^2.0", - "whitelist": "^1.2|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2334", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "translation_fallback", - "name": "drupal/translation_fallback", - "full_name": "drupal/translation_fallback", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "462", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "translation_overview", - "name": "drupal/translation_overview", - "full_name": "drupal/translation_overview", - "version_drupal": "7.x-2.0-beta2", - "version": "^2.0-beta2", - "whitelist": "^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "463", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "translation_table", - "name": "drupal/translation_table", - "full_name": "drupal/translation_table", - "version_drupal": "7.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "464", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "transliterate_filenames", - "name": "drupal/transliterate_filenames", - "full_name": "drupal/transliterate_filenames", - "version_drupal": "8.x-1.5", - "version": "^1.5||^2.0", - "whitelist": "^1.5||^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "4960", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "transliteration", - "name": "drupal/transliteration", - "full_name": "drupal/transliteration", - "version_drupal": "7.x-3.2", - "version": "^3.2", - "whitelist": "^3.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "465", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "trash_flag", - "name": "drupal/trash_flag", - "full_name": "drupal/trash_flag", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5785", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tweetbutton", - "name": "drupal/tweetbutton", - "full_name": "drupal/tweetbutton", - "version_drupal": "7.x-2.0-beta1", - "version": "^2.0-beta1", - "whitelist": "^2.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "466", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twig_field_value", - "name": "drupal/twig_field_value", - "full_name": "drupal/twig_field_value", - "version_drupal": "8.x-1.2|8.x-2.0.0", - "version": "^1.2|^2.0.0", - "whitelist": "^1.2|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "585", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twig_tweak", - "name": "drupal/twig_tweak", - "full_name": "drupal/twig_tweak", - "version_drupal": "8.x-2.4", - "version": "^2.4||^3.1.3||^3.2.0", - "whitelist": "^2.4||^3.1.3||^3.2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "584", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twig_vardumper", - "name": "drupal/twig_vardumper", - "full_name": "drupal/twig_vardumper", - "version_drupal": "3.0.2", - "version": "^3.0.2", - "whitelist": "^3.0.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "25585", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "twitter_entity", - "name": "drupal/twitter_entity", - "full_name": "drupal/twitter_entity", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6872", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "typed_data", - "name": "drupal/typed_data", - "full_name": "drupal/typed_data", - "version_drupal": "8.x-1.0-alpha5", - "version": "^1.0-alpha5", - "whitelist": "^1.0-alpha5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5652", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "typed_link", - "name": "drupal/typed_link", - "full_name": "drupal/typed_link", - "version_drupal": "8.x-1.0", - "version": "^1.0|^2.0.0", - "whitelist": "^1.0|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2414", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "tzfield", - "name": "drupal/tzfield", - "full_name": "drupal/tzfield", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4129", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns", - "name": "drupal/ui_patterns", - "full_name": "drupal/ui_patterns", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "568", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns_layout_builder", - "name": "drupal/ui_patterns_layout_builder", - "full_name": "drupal/ui_patterns_layout_builder", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4588", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns_settings", - "name": "drupal/ui_patterns_settings", - "full_name": "drupal/ui_patterns_settings", - "version_drupal": "8.x-2.0-beta3", - "version": "^1.1|^2.0@beta", - "whitelist": "^1.1|^2.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4589", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_patterns_views_style", - "name": "drupal/ui_patterns_views_style", - "full_name": "drupal/ui_patterns_views_style", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4590", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ui_styles", - "name": "drupal/ui_styles", - "full_name": "drupal/ui_styles", - "version_drupal": "8.x-1.0-rc1", - "version": "^1.0@RC", - "whitelist": "^1.0@RC", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4617", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ultimate_cron", - "name": "drupal/ultimate_cron", - "full_name": "drupal/ultimate_cron", - "version_drupal": "8.x-2.0-alpha4", - "version": "^2.0-alpha4", - "whitelist": "^2.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2399", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "ultimate_cron", - "name": "drupal/ultimate_cron", - "full_name": "drupal/ultimate_cron", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "475", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "unique_field", - "name": "drupal/unique_field", - "full_name": "drupal/unique_field", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "467", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "unique_field_ajax", - "name": "drupal/unique_field_ajax", - "full_name": "drupal/unique_field_ajax", - "version_drupal": "2.1.2", - "version": "^2.1.2", - "whitelist": "^2.1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "20008", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "update_helper", - "name": "drupal/update_helper", - "full_name": "drupal/update_helper", - "version_drupal": "8.x-2.0.0", - "version": "^1.3|^2.0||^3.0", - "whitelist": "^1.3|^2.0||^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5410", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "update_notifications_disable", - "name": "drupal/update_notifications_disable", - "full_name": "drupal/update_notifications_disable", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2440", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "upgrade_status", - "name": "drupal/upgrade_status", - "full_name": "drupal/upgrade_status", - "version_drupal": "8.x-3.6", - "version": "^3.6", - "whitelist": "^3.6", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5963", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "url", - "name": "drupal/url", - "full_name": "drupal/url", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-parcel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7033", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "url_embed", - "name": "drupal/url_embed", - "full_name": "drupal/url_embed", - "version_drupal": "8.x-1.0-beta1", - "version": "^1.0-beta1", - "whitelist": "^1.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5411", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_dashboard", - "name": "drupal/user_dashboard", - "full_name": "drupal/user_dashboard", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "468", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userdelete", - "name": "drupal/userdelete", - "full_name": "drupal/userdelete", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "ersc,move-ersc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "10029", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "useremaildomain", - "name": "drupal/useremaildomain", - "full_name": "drupal/useremaildomain", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12750", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_expire", - "name": "drupal/user_expire", - "full_name": "drupal/user_expire", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2662", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_field_anonymize", - "name": "drupal/user_field_anonymize", - "full_name": "drupal/user_field_anonymize", - "version_drupal": "8.x-1.x", - "version": "^1.x", - "whitelist": "^1.x", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "echo-ucpkn,digit-oesa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "14743", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_field_privacy", - "name": "drupal/user_field_privacy", - "full_name": "drupal/user_field_privacy", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "469", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_fields_visibility", - "name": "drupal/user_fields_visibility", - "full_name": "drupal/user_fields_visibility", - "version_drupal": "1.0.0-alpha1", - "version": "^1.0.0-alpha1", - "whitelist": "^1.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "14771", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "usermerge", - "name": "drupal/usermerge", - "full_name": "drupal/usermerge", - "version_drupal": "7.x-2.11", - "version": "^2.11", - "whitelist": "^2.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "472", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "username_enumeration_prevention", - "name": "drupal/username_enumeration_prevention", - "full_name": "drupal/username_enumeration_prevention", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "473", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_online_status", - "name": "drupal/user_online_status", - "full_name": "drupal/user_online_status", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5653", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userpoints", - "name": "drupal/userpoints", - "full_name": "drupal/userpoints", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "474", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userprotect", - "name": "drupal/userprotect", - "full_name": "drupal/userprotect", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "24900", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userprotect", - "name": "drupal/userprotect", - "full_name": "drupal/userprotect", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7936", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_prune", - "name": "drupal/user_prune", - "full_name": "drupal/user_prune", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-parcel,grow-posta", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6504", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_registrationpassword", - "name": "drupal/user_registrationpassword", - "full_name": "drupal/user_registrationpassword", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "470", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_registrationpassword", - "name": "drupal/user_registrationpassword", - "full_name": "drupal/user_registrationpassword", - "version_drupal": "8.x-1.0-alpha5", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6154", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_restritions", - "name": "drupal/user_restritions", - "full_name": "drupal/user_restritions", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "471", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "user_revision", - "name": "drupal/user_revision", - "full_name": "drupal/user_revision", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "5564", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "userswitch", - "name": "drupal/userswitch", - "full_name": "drupal/userswitch", - "version_drupal": "8.x-1.9 ", - "version": "^1.9 ", - "whitelist": "^1.9 ", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "4521", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "uuid", - "name": "drupal/uuid", - "full_name": "drupal/uuid", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "476", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "uuid_features", - "name": "drupal/uuid_features", - "full_name": "drupal/uuid_features", - "version_drupal": "7.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "477", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "variable", - "name": "drupal/variable", - "full_name": "drupal/variable", - "version_drupal": "7.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "478", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "variationcache", - "name": "drupal/variationcache", - "full_name": "drupal/variationcache", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4450", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "varnish", - "name": "drupal/varnish", - "full_name": "drupal/varnish", - "version_drupal": "7.x-1.9", - "version": "^1.9", - "whitelist": "^1.9", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ema,esma-webst,esma-extranet,esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2661", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "varnish_purge", - "name": "drupal/varnish_purge", - "full_name": "drupal/varnish_purge", - "version_drupal": "8.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cnect-dsjp,eacea-epale,rtd-ccri", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "2494", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vat_number", - "name": "drupal/vat_number", - "full_name": "drupal/vat_number", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "479", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vbo_export", - "name": "drupal/vbo_export", - "full_name": "drupal/vbo_export", - "version_drupal": "8.x-3.2", - "version": "^3.2", - "whitelist": "^3.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4801", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "verf", - "name": "drupal/verf", - "full_name": "drupal/verf", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "fisma-edfp,grow-posta-d9, joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "17792", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video", - "name": "drupal/video", - "full_name": "drupal/video", - "version_drupal": "7.x-2.14", - "version": "^2.14", - "whitelist": "^2.14", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "480", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video", - "name": "drupal/video", - "full_name": "drupal/video", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5787", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video_embed_field", - "name": "drupal/video_embed_field", - "full_name": "drupal/video_embed_field", - "version_drupal": "8.x-2.2", - "version": "^1.6 || ^2.2", - "whitelist": "^1.6 || ^2.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2379", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video_embed_field", - "name": "drupal/video_embed_field", - "full_name": "drupal/video_embed_field", - "version_drupal": "7.x-2.0-beta11", - "version": "^2.0@beta", - "whitelist": "^2.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6135", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "video_embed_field_migrate", - "name": "drupal/video_embed_field_migrate", - "full_name": "drupal/video_embed_field_migrate", - "version_drupal": "1.0.x-dev", - "version": "^1.0.x-dev", - "whitelist": "^1.0.x-dev", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-joinup", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13148", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_custom_table", - "name": "drupal/view_custom_table", - "full_name": "drupal/view_custom_table", - "version_drupal": "8.x-1.6", - "version": "^1.6|^2.0.0", - "whitelist": "^1.6|^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11168", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "viewfield", - "name": "drupal/viewfield", - "full_name": "drupal/viewfield", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "482", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_modes_display", - "name": "drupal/view_modes_display", - "full_name": "drupal/view_modes_display", - "version_drupal": "8.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4065", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_mode_switch", - "name": "drupal/view_mode_switch", - "full_name": "drupal/view_mode_switch", - "version_drupal": "8.x-1.2", - "version": "^1.2|^2.0.1", - "whitelist": "^1.2|^2.0.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10444", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "viewreference", - "name": "drupal/viewreference", - "full_name": "drupal/viewreference", - "version_drupal": "7.x-3.5", - "version": "^3.5", - "whitelist": "^3.5", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ema", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "483", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views", - "name": "drupal/views", - "full_name": "drupal/views", - "version_drupal": "7.x-3.23", - "version": "^3.23", - "whitelist": "^3.23", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "484", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_accordion", - "name": "drupal/views_accordion", - "full_name": "drupal/views_accordion", - "version_drupal": "8.x-1.3", - "version": "^1.3|^2.0", - "whitelist": "^1.3|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "1949", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_accordion", - "name": "drupal/views_accordion", - "full_name": "drupal/views_accordion", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6529", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_add_button", - "name": "drupal/views_add_button", - "full_name": "drupal/views_add_button", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "1948", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_aggregator", - "name": "drupal/views_aggregator", - "full_name": "drupal/views_aggregator", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17580", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_aggregator", - "name": "drupal/views_aggregator", - "full_name": "drupal/views_aggregator", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "echo-ucpkn", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "24080", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_ajax_history", - "name": "drupal/views_ajax_history", - "full_name": "drupal/views_ajax_history", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "485", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_arg_order_sort", - "name": "drupal/views_arg_order_sort", - "full_name": "drupal/views_arg_order_sort", - "version_drupal": "2.0.0-alpha1", - "version": "^2.0.0-alpha1", - "whitelist": "^2.0.0-alpha1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "33008", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_autocomplete_api", - "name": "drupal/views_autocomplete_api", - "full_name": "drupal/views_autocomplete_api", - "version_drupal": "7.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "610", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_autocomplete_filters", - "name": "drupal/views_autocomplete_filters", - "full_name": "drupal/views_autocomplete_filters", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "486", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_autocomplete_filters", - "name": "drupal/views_autocomplete_filters", - "full_name": "drupal/views_autocomplete_filters", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "889", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_autosubmit", - "name": "drupal/views_autosubmit", - "full_name": "drupal/views_autosubmit", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5097", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_base_url", - "name": "drupal/views_base_url", - "full_name": "drupal/views_base_url", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5444", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_between_dates_filter", - "name": "drupal/views_between_dates_filter", - "full_name": "drupal/views_between_dates_filter", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "487", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_block_area", - "name": "drupal/views_block_area", - "full_name": "drupal/views_block_area", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11387", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_block_area", - "name": "drupal/views_block_area", - "full_name": "drupal/views_block_area", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "488", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_block_filter_block", - "name": "drupal/views_block_filter_block", - "full_name": "drupal/views_block_filter_block", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4064", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_block_filter_block", - "name": "drupal/views_block_filter_block", - "full_name": "drupal/views_block_filter_block", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "489", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_blogspot_archive", - "name": "drupal/views_blogspot_archive", - "full_name": "drupal/views_blogspot_archive", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3214", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_bootstrap", - "name": "drupal/views_bootstrap", - "full_name": "drupal/views_bootstrap", - "version_drupal": "7.x-3.2", - "version": "^3.2", - "whitelist": "^3.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "490", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_bulk_edit", - "name": "drupal/views_bulk_edit", - "full_name": "drupal/views_bulk_edit", - "version_drupal": "8.x-2.5", - "version": "^2.5", - "whitelist": "^2.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4667", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_bulk_operations", - "name": "drupal/views_bulk_operations", - "full_name": "drupal/views_bulk_operations", - "version_drupal": "8.x-3.4", - "version": "^3.4|^4.0.0", - "whitelist": "^3.4|^4.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2319", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_bulk_operations", - "name": "drupal/views_bulk_operations", - "full_name": "drupal/views_bulk_operations", - "version_drupal": "7.x-3.5", - "version": "^3.5", - "whitelist": "^3.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "491", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_cm_current_state", - "name": "drupal/views_cm_current_state", - "full_name": "drupal/views_cm_current_state", - "version_drupal": "2.0.1", - "version": "^2.0.1", - "whitelist": "^2.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eacea-youthwiki", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "24268", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_conditional", - "name": "drupal/views_conditional", - "full_name": "drupal/views_conditional", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "492", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_conditional", - "name": "drupal/views_conditional", - "full_name": "drupal/views_conditional", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5775", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_contextual_filter_query", - "name": "drupal/views_contextual_filter_query", - "full_name": "drupal/views_contextual_filter_query", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "493", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_contextual_filters_or", - "name": "drupal/views_contextual_filters_or", - "full_name": "drupal/views_contextual_filters_or", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "494", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_contextual_filters_or", - "name": "drupal/views_contextual_filters_or", - "full_name": "drupal/views_contextual_filters_or", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5418", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_custom_cache_tag", - "name": "drupal/views_custom_cache_tag", - "full_name": "drupal/views_custom_cache_tag", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2400", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_database_connector", - "name": "drupal/views_database_connector", - "full_name": "drupal/views_database_connector", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3226", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export", - "name": "drupal/views_data_export", - "full_name": "drupal/views_data_export", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2485", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export", - "name": "drupal/views_data_export", - "full_name": "drupal/views_data_export", - "version_drupal": "7.x-3.2", - "version": "^3.2", - "whitelist": "^3.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "495", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export_pdf", - "name": "drupal/views_data_export_pdf", - "full_name": "drupal/views_data_export_pdf", - "version_drupal": "7.x-2.0-rc1", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "2533", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export_phpexcel", - "name": "drupal/views_data_export_phpexcel", - "full_name": "drupal/views_data_export_phpexcel", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "496", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export_phpspreadsheet", - "name": "drupal/views_data_export_phpspreadsheet", - "full_name": "drupal/views_data_export_phpspreadsheet", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta-d9,eiopa-ewppa-eiopa-reference", - "allowed_profiles": "ewcms", - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "19094", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_data_export_phpspreadsheet", - "name": "drupal/views_data_export_phpspreadsheet", - "full_name": "drupal/views_data_export_phpspreadsheet", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2946", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_datasource", - "name": "drupal/views_datasource", - "full_name": "drupal/views_datasource", - "version_drupal": "7.x-1.0-alpha2", - "version": "^1.0-alpha2", - "whitelist": "^1.0-alpha2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2318", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_date_format_sql", - "name": "drupal/views_date_format_sql", - "full_name": "drupal/views_date_format_sql", - "version_drupal": "7.x-3.3", - "version": "^3.3", - "whitelist": "^3.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "497", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_date_format_sql", - "name": "drupal/views_date_format_sql", - "full_name": "drupal/views_date_format_sql", - "version_drupal": "8.x-3.0-alpha1", - "version": "^3.0-alpha1 ", - "whitelist": "^3.0-alpha1 ", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5422", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_dependent_filters", - "name": "drupal/views_dependent_filters", - "full_name": "drupal/views_dependent_filters", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "498", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_export_xls", - "name": "drupal/views_export_xls", - "full_name": "drupal/views_export_xls", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "499", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_exposed_filter_blocks", - "name": "drupal/views_exposed_filter_blocks", - "full_name": "drupal/views_exposed_filter_blocks", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "9351", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_exposed_groups", - "name": "drupal/views_exposed_groups", - "full_name": "drupal/views_exposed_groups", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd,esma-extranet,esma-webst", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7952", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_field_formatter", - "name": "drupal/views_field_formatter", - "full_name": "drupal/views_field_formatter", - "version_drupal": "8.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "574", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_fieldsets", - "name": "drupal/views_fieldsets", - "full_name": "drupal/views_fieldsets", - "version_drupal": "8.x-3.3", - "version": "^3.3", - "whitelist": "^3.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "3539", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_fieldsets", - "name": "drupal/views_fieldsets", - "full_name": "drupal/views_fieldsets", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "501", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_field_view", - "name": "drupal/views_field_view", - "full_name": "drupal/views_field_view", - "version_drupal": "8.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13593", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_field_view", - "name": "drupal/views_field_view", - "full_name": "drupal/views_field_view", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "500", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_filters_populate", - "name": "drupal/views_filters_populate", - "full_name": "drupal/views_filters_populate", - "version_drupal": "8.x-1.1", - "version": "^1.1|^2.0", - "whitelist": "^1.1|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2301", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_filters_populate", - "name": "drupal/views_filters_populate", - "full_name": "drupal/views_filters_populate", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "502", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_flag_refresh", - "name": "drupal/views_flag_refresh", - "full_name": "drupal/views_flag_refresh", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "503", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_flipped_table", - "name": "drupal/views_flipped_table", - "full_name": "drupal/views_flipped_table", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2406", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_flipped_table", - "name": "drupal/views_flipped_table", - "full_name": "drupal/views_flipped_table", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "504", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_geojson", - "name": "drupal/views_geojson", - "full_name": "drupal/views_geojson", - "version_drupal": "7.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "505", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_glossary", - "name": "drupal/views_glossary", - "full_name": "drupal/views_glossary", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "506", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_infinite_scroll", - "name": "drupal/views_infinite_scroll", - "full_name": "drupal/views_infinite_scroll", - "version_drupal": "8.x-1.6", - "version": "^1.6||^2.0.0", - "whitelist": "^1.6||^2.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2380", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_infinite_scroll", - "name": "drupal/views_infinite_scroll", - "full_name": "drupal/views_infinite_scroll", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "507", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_json_query", - "name": "drupal/views_json_query", - "full_name": "drupal/views_json_query", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "508", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_json_source", - "name": "drupal/views_json_source", - "full_name": "drupal/views_json_source", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2643", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_lazy_load", - "name": "drupal/views_lazy_load", - "full_name": "drupal/views_lazy_load", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "572", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_linkarea", - "name": "drupal/views_linkarea", - "full_name": "drupal/views_linkarea", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "13073", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_linkarea", - "name": "drupal/views_linkarea", - "full_name": "drupal/views_linkarea", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2471", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_list_sort", - "name": "drupal/views_list_sort", - "full_name": "drupal/views_list_sort", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "509", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_litepager", - "name": "drupal/views_litepager", - "full_name": "drupal/views_litepager", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "510", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_load_more", - "name": "drupal/views_load_more", - "full_name": "drupal/views_load_more", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "511", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_menu_children_filter", - "name": "drupal/views_menu_children_filter", - "full_name": "drupal/views_menu_children_filter", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5939", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_merge_rows", - "name": "drupal/views_merge_rows", - "full_name": "drupal/views_merge_rows", - "version_drupal": "7.x-1.0-rc1", - "version": "^1.0-rc1", - "whitelist": "^1.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "512", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_multiple_permissions", - "name": "drupal/views_multiple_permissions", - "full_name": "drupal/views_multiple_permissions", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "11325", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_pdf", - "name": "drupal/views_pdf", - "full_name": "drupal/views_pdf", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "esma-eecsd", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7949", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_php", - "name": "drupal/views_php", - "full_name": "drupal/views_php", - "version_drupal": "7.x-1.0-alpha3", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "", - "nid": "2524", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_random_seed", - "name": "drupal/views_random_seed", - "full_name": "drupal/views_random_seed", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "513", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "viewsreference", - "name": "drupal/viewsreference", - "full_name": "drupal/viewsreference", - "version_drupal": "8.x-2.0-alpha4", - "version": "^1.0|^2.0-beta2", - "whitelist": "^1.0|^2.0-beta2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "583", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_responsive_grid", - "name": "drupal/views_responsive_grid", - "full_name": "drupal/views_responsive_grid", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "514", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_rss", - "name": "drupal/views_rss", - "full_name": "drupal/views_rss", - "version_drupal": "7.x-2.0-rc4", - "version": "^2.0-rc4", - "whitelist": "^2.0-rc4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "ema,eeas,jrcsh,know4pol,jrc-jrcsh", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "515", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_savedsearches", - "name": "drupal/views_savedsearches", - "full_name": "drupal/views_savedsearches", - "version_drupal": "7.x-1.0-beta2", - "version": "^1.0-beta2", - "whitelist": "^1.0-beta2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2464", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_selective_filters", - "name": "drupal/views_selective_filters", - "full_name": "drupal/views_selective_filters", - "version_drupal": "8.x-1.x-dev", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "dg-cnect-cybersecurity-atlas,empl-ela", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "2534", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_selective_filters", - "name": "drupal/views_selective_filters", - "full_name": "drupal/views_selective_filters", - "version_drupal": "7.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "516", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_send", - "name": "drupal/views_send", - "full_name": "drupal/views_send", - "version_drupal": "7.x-1.1", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "517", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_show_more", - "name": "drupal/views_show_more", - "full_name": "drupal/views_show_more", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4174", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_show_more", - "name": "drupal/views_show_more", - "full_name": "drupal/views_show_more", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "518", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_slideshow", - "name": "drupal/views_slideshow", - "full_name": "drupal/views_slideshow", - "version_drupal": "7.x-3.1", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "519", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_slideshow", - "name": "drupal/views_slideshow", - "full_name": "drupal/views_slideshow", - "version_drupal": "8.x-4.6", - "version": "^4.6", - "whitelist": "^4.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "888", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_slideshow_slider", - "name": "drupal/views_slideshow_slider", - "full_name": "drupal/views_slideshow_slider", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "520", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_system", - "name": "drupal/views_system", - "full_name": "drupal/views_system", - "version_drupal": "7.x-3.2", - "version": "^3.2", - "whitelist": "^3.2", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "fchju", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "521", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_table_rowspan", - "name": "drupal/views_table_rowspan", - "full_name": "drupal/views_table_rowspan", - "version_drupal": "2.0.2", - "version": "^2.0.2||^3.0.1", - "whitelist": "^2.0.2||^3.0.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-efsa", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "19051", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_table_rowspan", - "name": "drupal/views_table_rowspan", - "full_name": "drupal/views_table_rowspan", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2460", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_templates", - "name": "drupal/views_templates", - "full_name": "drupal/views_templates", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "6467", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_term_hierarchy_weight_field", - "name": "drupal/views_term_hierarchy_weight_field", - "full_name": "drupal/views_term_hierarchy_weight_field", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "era", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5980", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_term_path", - "name": "drupal/views_term_path", - "full_name": "drupal/views_term_path", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-rim", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7086", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_timelinejs", - "name": "drupal/views_timelinejs", - "full_name": "drupal/views_timelinejs", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "522", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_tree", - "name": "drupal/views_tree", - "full_name": "drupal/views_tree", - "version_drupal": "8.x-2.0-alpha1", - "version": "^2.0-alpha1", - "whitelist": "^2.0-alpha1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5096", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_tree", - "name": "drupal/views_tree", - "full_name": "drupal/views_tree", - "version_drupal": "7.x-2.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "523", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_url_path_arguments", - "name": "drupal/views_url_path_arguments", - "full_name": "drupal/views_url_path_arguments", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "echo-ucpkn", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "25613", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "views_year_filter", - "name": "drupal/views_year_filter", - "full_name": "drupal/views_year_filter", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8682", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_unpublished", - "name": "drupal/view_unpublished", - "full_name": "drupal/view_unpublished", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "481", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "view_unpublished", - "name": "drupal/view_unpublished", - "full_name": "drupal/view_unpublished", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4905", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "virtual_keyboard", - "name": "drupal/virtual_keyboard", - "full_name": "drupal/virtual_keyboard", - "version_drupal": "2.0.0", - "version": "^2.0", - "whitelist": "^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "9.x", - "cores": "9.x", - "usage": "Free", - "nid": "20439", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "virtual_keyboard", - "name": "drupal/virtual_keyboard", - "full_name": "drupal/virtual_keyboard", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2469", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vote_up_down", - "name": "drupal/vote_up_down", - "full_name": "drupal/vote_up_down", - "version_drupal": "8.x-1.0-alpha4", - "version": "^1.0-alpha4", - "whitelist": "^1.0-alpha4", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "digit-ecif, digit-pm2", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5998", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "votingapi", - "name": "drupal/votingapi", - "full_name": "drupal/votingapi", - "version_drupal": "8.x-3.0-beta2", - "version": "^3.0@beta", - "whitelist": "^3.0@beta", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,8.x", - "usage": "Free", - "nid": "4668", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "votingapi", - "name": "drupal/votingapi", - "full_name": "drupal/votingapi", - "version_drupal": "7.x-2.15", - "version": "^2.15", - "whitelist": "^2.15", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "524", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vppr", - "name": "drupal/vppr", - "full_name": "drupal/vppr", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "525", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "vscc", - "name": "drupal/vscc", - "full_name": "drupal/vscc", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-demw", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7028", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "watchdog_filtering", - "name": "drupal/watchdog_filtering", - "full_name": "drupal/watchdog_filtering", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17573", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform", - "name": "drupal/webform", - "full_name": "drupal/webform", - "version_drupal": "7.x-4.16", - "version": "^4.21", - "whitelist": "^4.21", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "526", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform", - "name": "drupal/webform", - "full_name": "drupal/webform", - "version_drupal": "8.x-5.4|8.x-6.0.2", - "version": "^5.4|^6.0.2", - "whitelist": "^5.4|^6.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "582", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_addmore", - "name": "drupal/webform_addmore", - "full_name": "drupal/webform_addmore", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5777", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_ajax", - "name": "drupal/webform_ajax", - "full_name": "drupal/webform_ajax", - "version_drupal": "7.x-2.0-rc1", - "version": "^2.0-rc1", - "whitelist": "^2.0-rc1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "611", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_clear", - "name": "drupal/webform_clear", - "full_name": "drupal/webform_clear", - "version_drupal": "7.x- 2.0", - "version": "^ 2.0", - "whitelist": "^ 2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "528", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_config_ignore", - "name": "drupal/webform_config_ignore", - "full_name": "drupal/webform_config_ignore", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5419", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_content_creator", - "name": "drupal/webform_content_creator", - "full_name": "drupal/webform_content_creator", - "version_drupal": "2.0.2", - "version": "^2.0.2", - "whitelist": "^2.0.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10130", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_default_fields", - "name": "drupal/webform_default_fields", - "full_name": "drupal/webform_default_fields", - "version_drupal": "7.x-3.6", - "version": "^3.6", - "whitelist": "^3.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2528", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_default_fields", - "name": "drupal/webform_default_fields", - "full_name": "drupal/webform_default_fields", - "version_drupal": "7.x-3.6", - "version": "^3.6", - "whitelist": "^3.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "529", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_document", - "name": "drupal/webform_document", - "full_name": "drupal/webform_document", - "version_drupal": "7.x-4.x-dev", - "version": "4.x-dev", - "whitelist": "4.x-dev", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5782", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_entity", - "name": "drupal/webform_entity", - "full_name": "drupal/webform_entity", - "version_drupal": "7.x-1.x-dev", - "version": "^1.x-dev", - "whitelist": "^1.x-dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5958", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_events", - "name": "drupal/webform_events", - "full_name": "drupal/webform_events", - "version_drupal": "7.x-1.x-dev", - "version": "^^dev", - "whitelist": "^^dev", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "530", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_features", - "name": "drupal/webform_features", - "full_name": "drupal/webform_features", - "version_drupal": "7.x-4.0", - "version": "^4.0", - "whitelist": "^4.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "527", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_html_textarea", - "name": "drupal/webform_html_textarea", - "full_name": "drupal/webform_html_textarea", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17553", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_layout", - "name": "drupal/webform_layout", - "full_name": "drupal/webform_layout", - "version_drupal": "7.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "digit-jmh", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6530", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_localization", - "name": "drupal/webform_localization", - "full_name": "drupal/webform_localization", - "version_drupal": "7.x-4.10", - "version": "^4.10", - "whitelist": "^4.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "531", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_mass_email", - "name": "drupal/webform_mass_email", - "full_name": "drupal/webform_mass_email", - "version_drupal": "8.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "22368", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_matrix_component", - "name": "drupal/webform_matrix_component", - "full_name": "drupal/webform_matrix_component", - "version_drupal": "7.x-4.24", - "version": "^4.24", - "whitelist": "^4.24", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "532", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_migrate", - "name": "drupal/webform_migrate", - "full_name": "drupal/webform_migrate", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10233", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_optionsmarkup", - "name": "drupal/webform_optionsmarkup", - "full_name": "drupal/webform_optionsmarkup", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "533", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_references", - "name": "drupal/webform_references", - "full_name": "drupal/webform_references", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "534", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_rest", - "name": "drupal/webform_rest", - "full_name": "drupal/webform_rest", - "version_drupal": "4.0.0", - "version": "^4.0.0", - "whitelist": "^4.0.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "eacea-epale,edps-edps", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "8090", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_revisions", - "name": "drupal/webform_revisions", - "full_name": "drupal/webform_revisions", - "version_drupal": "7.x-1.0-beta3", - "version": "^1.0-beta3", - "whitelist": "^1.0-beta3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5783", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_rules", - "name": "drupal/webform_rules", - "full_name": "drupal/webform_rules", - "version_drupal": "7.x-1.6", - "version": "^1.6", - "whitelist": "^1.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "535", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_scheduler", - "name": "drupal/webform_scheduler", - "full_name": "drupal/webform_scheduler", - "version_drupal": "7.x-1.0-beta8", - "version": "^1.0-beta8", - "whitelist": "^1.0-beta8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "536", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_share", - "name": "drupal/webform_share", - "full_name": "drupal/webform_share", - "version_drupal": "7.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "era-safetyalerts", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2663", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_simplenews_handler", - "name": "drupal/webform_simplenews_handler", - "full_name": "drupal/webform_simplenews_handler", - "version_drupal": "8.x-1.5", - "version": "^1.5", - "whitelist": "^1.5", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "22364", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_telephone", - "name": "drupal/webform_telephone", - "full_name": "drupal/webform_telephone", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "cim", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "33481", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_translation", - "name": "drupal/webform_translation", - "full_name": "drupal/webform_translation", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "17486", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_validation", - "name": "drupal/webform_validation", - "full_name": "drupal/webform_validation", - "version_drupal": "7.x-1.10", - "version": "^1.10", - "whitelist": "^1.10", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "537", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webform_views", - "name": "drupal/webform_views", - "full_name": "drupal/webform_views", - "version_drupal": "8.x-5.0-alpha8", - "version": "^5.0-alpha8", - "whitelist": "^5.0-alpha8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4928", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "webp", - "name": "drupal/webp", - "full_name": "drupal/webp", - "version_drupal": "8.x-1.0-beta5", - "version": "^1.0@beta", - "whitelist": "^1.0@beta", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "eurojust,digit-openeuropa-dc", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5978", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "weight", - "name": "drupal/weight", - "full_name": "drupal/weight", - "version_drupal": "8.x-3.1", - "version": "^3.1", - "whitelist": "^3.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2304", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "weight", - "name": "drupal/weight", - "full_name": "drupal/weight", - "version_drupal": "7.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "538", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "we_megamenu", - "name": "drupal/we_megamenu", - "full_name": "drupal/we_megamenu", - "version_drupal": "8.x-1.11", - "version": "^1.11", - "whitelist": "^1.11", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2937", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wikitools", - "name": "drupal/wikitools", - "full_name": "drupal/wikitools", - "version_drupal": "7.x-1.0-alpha1", - "version": "^1.0-alpha1", - "whitelist": "^1.0-alpha1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "taxud-pics", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "12740", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wkhtmltopdf", - "name": "drupal/wkhtmltopdf", - "full_name": "drupal/wkhtmltopdf", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "", - "nid": "3229", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench", - "name": "drupal/workbench", - "full_name": "drupal/workbench", - "version_drupal": "8.x-1.3", - "version": "^1.3", - "whitelist": "^1.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2553", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench", - "name": "drupal/workbench", - "full_name": "drupal/workbench", - "version_drupal": "7.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "539", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_access", - "name": "drupal/workbench_access", - "full_name": "drupal/workbench_access", - "version_drupal": "8.x-1.0-beta4", - "version": "^1.0-beta4", - "whitelist": "^1.0-beta4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "10067", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_access", - "name": "drupal/workbench_access", - "full_name": "drupal/workbench_access", - "version_drupal": "7.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "540", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_email", - "name": "drupal/workbench_email", - "full_name": "drupal/workbench_email", - "version_drupal": "7.x-3.12", - "version": "^3.12", - "whitelist": "^3.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "541", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_email", - "name": "drupal/workbench_email", - "full_name": "drupal/workbench_email", - "version_drupal": "8.x-2.2.0", - "version": "^2.2.0", - "whitelist": "^2.2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5548", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_media", - "name": "drupal/workbench_media", - "full_name": "drupal/workbench_media", - "version_drupal": "7.x-2.1", - "version": "^2.1", - "whitelist": "^2.1", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "7026", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_moderation", - "name": "drupal/workbench_moderation", - "full_name": "drupal/workbench_moderation", - "version_drupal": "7.x-3.0", - "version": "^3.0", - "whitelist": "^3.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "542", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_moderation_state_access", - "name": "drupal/workbench_moderation_state_access", - "full_name": "drupal/workbench_moderation_state_access", - "version_drupal": "7.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "grow-posta,grow-parcel", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6595", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workbench_og", - "name": "drupal/workbench_og", - "full_name": "drupal/workbench_og", - "version_drupal": "7.x-2.0-beta1", - "version": "^2.0-beta1", - "whitelist": "^2.0-beta1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "543", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workflow", - "name": "drupal/workflow", - "full_name": "drupal/workflow", - "version_drupal": "8.x-1.4", - "version": "^1.4", - "whitelist": "^1.4", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "4847", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "workflow", - "name": "drupal/workflow", - "full_name": "drupal/workflow", - "version_drupal": "7.x-2.13", - "version": "^2.13", - "whitelist": "^2.13", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "6774", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wysiwyg", - "name": "drupal/wysiwyg", - "full_name": "drupal/wysiwyg", - "version_drupal": "7.x-2.7", - "version": "^2.9", - "whitelist": "^2.9", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "544", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wysiwyg_abbr", - "name": "drupal/wysiwyg_abbr", - "full_name": "drupal/wysiwyg_abbr", - "version_drupal": "7.x-1.0", - "version": "^1.0", - "whitelist": "^1.0", - "blacklist": false, - "secure": false, - "status": "rejected", - "restricted_use": "1", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "545", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wysiwyg_filter", - "name": "drupal/wysiwyg_filter", - "full_name": "drupal/wysiwyg_filter", - "version_drupal": "7.x-1.6-rc9", - "version": "^1.6-rc9", - "whitelist": "^1.6-rc9", - "blacklist": false, - "secure": false, - "status": "restricted", - "restricted_use": "c4dweb,frontex-irma,irma,just-emnies,just-tpdt,just-react", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "5620", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "wysiwyg_template", - "name": "drupal/wysiwyg_template", - "full_name": "drupal/wysiwyg_template", - "version_drupal": "7.x-2.12", - "version": "^2.12", - "whitelist": "^2.12", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2408", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xautoload", - "name": "drupal/xautoload", - "full_name": "drupal/xautoload", - "version_drupal": "7.x-5.8", - "version": "^5.8", - "whitelist": "^5.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2492", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xbbcode", - "name": "drupal/xbbcode", - "full_name": "drupal/xbbcode", - "version_drupal": "7.x-1.8", - "version": "^1.8", - "whitelist": "^1.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "2547", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xls_serialization", - "name": "drupal/xls_serialization", - "full_name": "drupal/xls_serialization", - "version_drupal": "8.x-1.2", - "version": "^1.2", - "whitelist": "^1.2", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "7122", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xml_field", - "name": "drupal/xml_field", - "full_name": "drupal/xml_field", - "version_drupal": "7.x-2.3", - "version": "^2.3", - "whitelist": "^2.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "546", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xmlsitemap", - "name": "drupal/xmlsitemap", - "full_name": "drupal/xmlsitemap", - "version_drupal": "8.x-1.0-alpha3", - "version": "^1.0-alpha3", - "whitelist": "^1.0-alpha3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2272", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "xmlsitemap", - "name": "drupal/xmlsitemap", - "full_name": "drupal/xmlsitemap", - "version_drupal": "7.x-2.6", - "version": "^2.6", - "whitelist": "^2.6", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "547", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "yaml_editor", - "name": "drupal/yaml_editor", - "full_name": "drupal/yaml_editor", - "version_drupal": "8.x-1.1", - "version": "^1.1", - "whitelist": "^1.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "5423", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "yearonly", - "name": "drupal/yearonly", - "full_name": "drupal/yearonly", - "version_drupal": "8.x-1.3|8x-9.0.0", - "version": "^1.3|^9.0.0", - "whitelist": "^1.3|^9.0.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "2486", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "yoast_seo", - "name": "drupal/yoast_seo", - "full_name": "drupal/yoast_seo", - "version_drupal": "8.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Free", - "nid": "8547", - "dev_component": "false" - }, - { - "type": "drupal-module", - "machine_name": "youtube", - "name": "drupal/youtube", - "full_name": "drupal/youtube", - "version_drupal": "7.x-1.7", - "version": "^1.7", - "whitelist": "^1.7", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": false, - "mandatory_date": false, - "core": "7.x", - "cores": "7.x", - "usage": "Free", - "nid": "548", - "dev_component": "false" - }, - { - "type": "module", - "machine_name": "drush", - "name": "drush/drush", - "full_name": "drush/drush", - "version_drupal": "*", - "version": "*", - "whitelist": "*", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,8.x,9.x", - "usage": "recommended", - "nid": "17660", - "dev_component": "false" - }, - { - "type": "module", - "machine_name": "toolkit", - "name": "ec-europa/toolkit", - "full_name": "ec-europa/toolkit", - "version_drupal": "8.6.8", - "version": "^3.6.3|^4.8.2|^8.6.8", - "whitelist": "^3.6.3|^4.8.2|^8.6.8", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "7.x", - "cores": "7.x,8.x,9.x", - "usage": "Mandatory", - "nid": "17659", - "dev_component": "true" - }, - { - "type": "drupal-module", - "machine_name": "oe_dashboard_agent", - "name": "openeuropa/oe_dashboard_agent", - "full_name": "openeuropa/oe_dashboard_agent", - "version_drupal": "^0.1", - "version": "^0.3", - "whitelist": "^0.3", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "1", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x", - "usage": "Mandatory", - "nid": "2295", - "dev_component": "false" - }, - { - "type": "library", - "machine_name": "task-runner", - "name": "openeuropa/task-runner", - "full_name": "openeuropa/task-runner", - "version_drupal": "^1.0|^2.0", - "version": "^1.0|^2.0", - "whitelist": "^1.0|^2.0", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x", - "usage": "Free", - "nid": "19529", - "dev_component": "true" - }, - { - "type": "library", - "machine_name": "twig", - "name": "twig/twig", - "full_name": "twig/twig", - "version_drupal": "2.15.3", - "version": "^2.15.3||^3.0", - "whitelist": "^2.15.3||^3.0", - "blacklist": false, - "secure": "^2.15.3", - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "30336", - "dev_component": "false" - }, - { - "type": "library", - "machine_name": "phpdotenv", - "name": "vlucas/phpdotenv", - "full_name": "vlucas/phpdotenv", - "version_drupal": "5.4", - "version": "^7.1", - "whitelist": "^7.1", - "blacklist": false, - "secure": false, - "status": "authorised", - "restricted_use": "0", - "allowed_profiles": false, - "allowed_project_types": false, - "mandatory": "0", - "mandatory_date": false, - "core": "8.x", - "cores": "8.x,9.x,10.x", - "usage": "Free", - "nid": "20742", - "dev_component": "true" - } -] -'; diff --git a/tests/mock/api/v1/package-reviews.php b/tests/mock/api/v1/package-reviews.php deleted file mode 100644 index 95bba2cc3..000000000 --- a/tests/mock/api/v1/package-reviews.php +++ /dev/null @@ -1,9 +0,0 @@ -=9.4.10 <9.5.0|^9.5.2|^10.0.2", - "vendor_list": [ - "drupal", - "vlucas" - ] -} -'; From 9b06d107b1911da0b3b40f37604587b75b76e8d8 Mon Sep 17 00:00:00 2001 From: Juanpe Buenestado Perez Date: Fri, 8 Sep 2023 14:15:23 +0200 Subject: [PATCH 2/8] DQA-7736: Remove filterFolders from PHPMD ignore_patterns (#693) --- src/TaskRunner/Commands/TestsCommands.php | 1 - tests/fixtures/commands/tests.yml | 9 +++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/TaskRunner/Commands/TestsCommands.php b/src/TaskRunner/Commands/TestsCommands.php index d3680c4b3..20876f140 100644 --- a/src/TaskRunner/Commands/TestsCommands.php +++ b/src/TaskRunner/Commands/TestsCommands.php @@ -169,7 +169,6 @@ public function toolkitTestPhpmd(array $options = [ } if (!empty($options['ignore_patterns'])) { - Toolkit::filterFolders($options['ignore_patterns']); $execOptions['exclude'] = implode(',', $options['ignore_patterns']); } if (!empty($options['triggered_by'])) { diff --git a/tests/fixtures/commands/tests.yml b/tests/fixtures/commands/tests.yml index 2e7836a76..6ea487441 100644 --- a/tests/fixtures/commands/tests.yml +++ b/tests/fixtures/commands/tests.yml @@ -111,11 +111,8 @@ 1 => 'ansi', 2 => 'phpmd.xml', )) - ->options(array ( - 'exclude' => '', - 'suffixes' => 'php,module,inc,theme,install', - )) - [Simulator] Running ./vendor/bin/phpmd '' ansi phpmd.xml --exclude --suffixes 'php,module,inc,theme,install' + ->options(array ( ... )) + [Simulator] Running ./vendor/bin/phpmd '' ansi phpmd.xml --exclude 'dist/,.cache/,vendor/,web/,node_modules/,config/' --suffixes 'php,module,inc,theme,install' - command: 'toolkit:test-phpmd' configuration: [] @@ -133,7 +130,7 @@ 2 => 'phpmd.xml', )) ->options(array ( ... )) - [Simulator] Running ./vendor/bin/phpmd src ansi phpmd.xml --exclude vendor/ --suffixes 'php,module,inc,theme,install' + [Simulator] Running ./vendor/bin/phpmd src ansi phpmd.xml --exclude 'dist/,.cache/,vendor/,web/,node_modules/,config/' --suffixes 'php,module,inc,theme,install' - command: 'toolkit:check-phpcs-requirements' configuration: [] From fe68323a4a3798133cce8cc4cd40f2afde86886c Mon Sep 17 00:00:00 2001 From: Cristiano Gomes Date: Fri, 22 Sep 2023 11:58:56 +0100 Subject: [PATCH 3/8] DQA-7826: Hotfix for components security check (#694) --- CHANGELOG.md | 3 +++ phpdoc.dist.xml | 2 +- src/TaskRunner/Commands/ComponentCheckCommands.php | 11 +++++------ src/Toolkit.php | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e77897df6..33bdc77bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Toolkit change log +## Version 9.13.1 + - DQA-7826: Hotfix for components security check. + ## Version 9.13.0 - DQA-7528: Allow to block access to files in htaccess. - DQA-7379: Force max-age in Cache-Control headers. diff --git a/phpdoc.dist.xml b/phpdoc.dist.xml index ab2984416..091cab37c 100644 --- a/phpdoc.dist.xml +++ b/phpdoc.dist.xml @@ -9,7 +9,7 @@ docs - + latest diff --git a/src/TaskRunner/Commands/ComponentCheckCommands.php b/src/TaskRunner/Commands/ComponentCheckCommands.php index 814cc0d6b..5f3daf350 100644 --- a/src/TaskRunner/Commands/ComponentCheckCommands.php +++ b/src/TaskRunner/Commands/ComponentCheckCommands.php @@ -453,18 +453,17 @@ protected function componentInsecure(array $modules) if (!empty($data['advisories']) && is_array($data['advisories'])) { // Each package might have multiple issues, we take the first. foreach ($data['advisories'] as $advisory) { - $packageName = $advisory[0]['packageName']; - if (!isset($packages[$packageName])) { - $packages[] = $advisory[0]; - $packages[$packageName]['version'] = ToolCommands::getPackagePropertyFromComposer($packageName); - } + $firstAdvisory = array_pop($advisory); + $packageName = $firstAdvisory['packageName']; + $packages[$packageName]['title'] = $firstAdvisory['title']; + $packages[$packageName]['version'] = ToolCommands::getPackagePropertyFromComposer($packageName); } } } $messages = []; foreach ($packages as $name => $package) { - $msg = "Package $name has a security update, please update to a safe version."; + $msg = "Package $name has a security update, please update to a safe version. (" . $package['title'] . ")"; if (!empty($modules[$name]['secure'])) { if (Semver::satisfies($package['version'], $modules[$name]['secure'])) { $messages[] = "$msg (Version marked as secure)"; diff --git a/src/Toolkit.php b/src/Toolkit.php index ab96848fb..fb2e11eee 100644 --- a/src/Toolkit.php +++ b/src/Toolkit.php @@ -12,7 +12,7 @@ final class Toolkit /** * Constant holding the current version. */ - public const VERSION = '9.13.0'; + public const VERSION = '9.13.1'; /** * Returns the Toolkit root. From 3f1216d268c22b137f6522d9edbc1905ea31222f Mon Sep 17 00:00:00 2001 From: Cristiano Gomes Date: Wed, 27 Sep 2023 21:58:23 +0100 Subject: [PATCH 4/8] DQA-7830: Switch array_pop to array_shift in Toolkit secure check (#696) --- src/TaskRunner/Commands/ComponentCheckCommands.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TaskRunner/Commands/ComponentCheckCommands.php b/src/TaskRunner/Commands/ComponentCheckCommands.php index 5f3daf350..3a8008082 100644 --- a/src/TaskRunner/Commands/ComponentCheckCommands.php +++ b/src/TaskRunner/Commands/ComponentCheckCommands.php @@ -453,7 +453,7 @@ protected function componentInsecure(array $modules) if (!empty($data['advisories']) && is_array($data['advisories'])) { // Each package might have multiple issues, we take the first. foreach ($data['advisories'] as $advisory) { - $firstAdvisory = array_pop($advisory); + $firstAdvisory = array_shift($advisory); $packageName = $firstAdvisory['packageName']; $packages[$packageName]['title'] = $firstAdvisory['title']; $packages[$packageName]['version'] = ToolCommands::getPackagePropertyFromComposer($packageName); From 2af87e14e3903d65a1690aae8c995ea2cf55c235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Costa=20Silva?= <1574795+joaocsilva@users.noreply.github.com> Date: Wed, 27 Sep 2023 23:05:15 +0200 Subject: [PATCH 5/8] DQA-7713: Add support to phpunit/phpunit 10 (#698) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: J. João Santos --- .gitignore | 3 +- composer.json | 2 +- phpunit.xml.dist | 17 +++--- tests/AbstractTest.php | 60 ++++++++----------- .../Commands/BlackfireCommandsTest.php | 6 +- tests/Features/Commands/BuildCommandsTest.php | 6 +- .../Commands/ComponentCheckCommandsTest.php | 6 +- .../Commands/ConfigurationCommandsTest.php | 6 +- .../Features/Commands/DockerCommandsTest.php | 8 +-- .../Commands/DocumentationCommandsTest.php | 6 +- .../Features/Commands/DrupalCommandsTest.php | 10 ++-- tests/Features/Commands/DumpCommandsTest.php | 6 +- .../Commands/GitHooksCommandsTest.php | 6 +- .../Commands/GitleaksCommandsTest.php | 6 +- .../Features/Commands/InstallCommandsTest.php | 6 +- tests/Features/Commands/LintCommandsTest.php | 6 +- .../Features/Commands/ReleaseCommandsTest.php | 6 +- .../Commands/SymlinkProjectCommandsTest.php | 6 +- tests/Features/Commands/TestsCommandsTest.php | 6 +- tests/Features/Commands/ToolCommandsTest.php | 12 ++-- tests/Unit/ReplaceBlockTest.php | 4 +- tests/fixtures/commands/documentation.yml | 5 -- 22 files changed, 93 insertions(+), 106 deletions(-) diff --git a/.gitignore b/.gitignore index bd03a951d..dc2fab1cd 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,8 @@ /runner.yml /phpunit.xml /docker-compose.*.yml -.phpunit.result.cache +/.phpunit.result.cache +/.phpunit.cache/ *.sql phpda.* .phpdoc* diff --git a/composer.json b/composer.json index e7e9ef491..d36f28e07 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ "phpmd/phpmd": "^2.12", "phpstan/phpstan": "^1.10", "phpstan/phpstan-deprecation-rules": "^1.0", - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^9.5 || ^10.0", "squizlabs/php_codesniffer": "^3.7" }, "suggest": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index e5f212a60..019ec5874 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,18 +1,17 @@ + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" + backupGlobals="true" + colors="true" + processIsolation="true" + stopOnFailure="false" + bootstrap="vendor/autoload.php"> + diff --git a/tests/AbstractTest.php b/tests/AbstractTest.php index 801df0240..2ecbb0f45 100644 --- a/tests/AbstractTest.php +++ b/tests/AbstractTest.php @@ -156,6 +156,8 @@ public function runCommand(string $command, bool $simulate = true, bool $output /** * Helper function to debug the expectations and the content before assert. * + * To debug, set the variable TOOLKIT_DEBUG_EXPECTATIONS to true in the phpunit.xml file. + * * @param string $content * Content to test. * @param array $expectations @@ -163,29 +165,32 @@ public function runCommand(string $command, bool $simulate = true, bool $output */ protected function debugExpectations(string $content, array $expectations) { - $debug = "\n-- Content --\n$content\n-- End Content --\n"; + if (!getenv('TOOLKIT_DEBUG_EXPECTATIONS')) { + return; + } + $output = "\n-- Content --\n$content\n-- End Content --\n"; foreach ($expectations as $expectation) { if (!empty($expectation['contains'])) { - $debug .= "-- Contains --\n{$expectation['contains']}\n-- End Contains --\n"; + $output .= "-- Contains --\n{$expectation['contains']}\n-- End Contains --\n"; } if (!empty($expectation['not_contains'])) { - $debug .= "-- NotContains --\n{$expectation['not_contains']}\n-- End NotContains --\n"; + $output .= "-- NotContains --\n{$expectation['not_contains']}\n-- End NotContains --\n"; } if (!empty($expectation['string_contains'])) { - $debug .= "-- String --\n{$expectation['string_contains']}\n-- End String --\n"; + $output .= "-- String --\n{$expectation['string_contains']}\n-- End String --\n"; } if (!empty($expectation['not_string_contains'])) { - $debug .= "-- NotString --\n{$expectation['not_string_contains']}\n-- End NotString --\n"; + $output .= "-- NotString --\n{$expectation['not_string_contains']}\n-- End NotString --\n"; } if (!empty($expectation['file_expected']) && !empty($expectation['file_actual'])) { - $debug .= "-- Files equal - expected --\n"; - $debug .= file_get_contents($expectation['file_expected']); - $debug .= "\n-- END expected --\n-- Files equal - actual --\n"; - $debug .= file_get_contents($expectation['file_actual']); - $debug .= "\n-- END actual --\n"; + $output .= "-- Files equal - expected --\n"; + $output .= file_get_contents($expectation['file_expected']); + $output .= "\n-- END expected --\n-- Files equal - actual --\n"; + $output .= file_get_contents($expectation['file_actual']); + $output .= "\n-- END actual --\n"; } } - echo $debug; + echo $output; } /** @@ -219,7 +224,7 @@ protected function getClassLoader() * @return string * The filepath of fixtures. */ - protected function getFixtureRoot(): string + protected static function getFixtureRoot(): string { return __DIR__ . '/fixtures'; } @@ -233,9 +238,9 @@ protected function getFixtureRoot(): string * @return string * The filepath of the sandbox file. */ - protected function getFixtureFilepath(string $name): string + protected static function getFixtureFilepath(string $name): string { - return $this->getFixtureRoot() . '/' . $name; + return self::getFixtureRoot() . '/' . $name; } /** @@ -247,9 +252,9 @@ protected function getFixtureFilepath(string $name): string * @return mixed|string * A set of test data. */ - protected function getFixtureContent(string $filepath) + protected static function getFixtureContent(string $filepath) { - return Yaml::parse(file_get_contents($this->getFixtureFilepath($filepath))); + return Yaml::parse(file_get_contents(self::getFixtureFilepath($filepath))); } /** @@ -261,9 +266,9 @@ protected function getFixtureContent(string $filepath) * @return string * The filepath of the sandbox file. */ - protected function getSandboxFilepath(string $name): string + protected static function getSandboxFilepath(string $name): string { - return $this->getSandboxRoot() . '/' . $name; + return self::getSandboxRoot() . '/' . $name; } /** @@ -272,9 +277,9 @@ protected function getSandboxFilepath(string $name): string * @return string * The filepath of sandbox. */ - protected function getSandboxRoot(): string + protected static function getSandboxRoot(): string { - return __DIR__ . '/sandbox/' . $this->getClassName(); + return __DIR__ . '/sandbox/' . self::getClassName(); } /** @@ -283,23 +288,10 @@ protected function getSandboxRoot(): string * @return string * The class name. */ - protected function getClassName(): string + protected static function getClassName(): string { $class = explode('\\', static::class); return (string) end($class); } - /** - * Return the mock base url. - * - * @return string - * The mock base url, defaults to web:8080. - */ - public static function getMockBaseUrl(): string - { - return !empty(getenv('VIRTUAL_HOST')) - ? (string) getenv('VIRTUAL_HOST') - : 'web:8080'; - } - } diff --git a/tests/Features/Commands/BlackfireCommandsTest.php b/tests/Features/Commands/BlackfireCommandsTest.php index 056cab0c9..7925f8276 100644 --- a/tests/Features/Commands/BlackfireCommandsTest.php +++ b/tests/Features/Commands/BlackfireCommandsTest.php @@ -21,9 +21,9 @@ class BlackfireCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/blackfire.yml'); + return self::getFixtureContent('commands/blackfire.yml'); } /** @@ -55,7 +55,7 @@ public function testBlackfire(string $command, array $config = [], array $resour // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/BuildCommandsTest.php b/tests/Features/Commands/BuildCommandsTest.php index 989569740..43f0891bf 100644 --- a/tests/Features/Commands/BuildCommandsTest.php +++ b/tests/Features/Commands/BuildCommandsTest.php @@ -22,9 +22,9 @@ class BuildCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/build.yml'); + return self::getFixtureContent('commands/build.yml'); } /** @@ -51,7 +51,7 @@ public function testBuild(string $command, array $config = [], array $resources // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/ComponentCheckCommandsTest.php b/tests/Features/Commands/ComponentCheckCommandsTest.php index 8ff228f11..04692a589 100644 --- a/tests/Features/Commands/ComponentCheckCommandsTest.php +++ b/tests/Features/Commands/ComponentCheckCommandsTest.php @@ -22,9 +22,9 @@ class ComponentCheckCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/component-check.yml'); + return self::getFixtureContent('commands/component-check.yml'); } /** @@ -58,7 +58,7 @@ public function testComponentCheck(string $command, array $config = [], string $ // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/ConfigurationCommandsTest.php b/tests/Features/Commands/ConfigurationCommandsTest.php index 29ae18076..0e9795465 100644 --- a/tests/Features/Commands/ConfigurationCommandsTest.php +++ b/tests/Features/Commands/ConfigurationCommandsTest.php @@ -24,9 +24,9 @@ class ConfigurationCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/configuration.yml'); + return self::getFixtureContent('commands/configuration.yml'); } /** @@ -55,7 +55,7 @@ public function testConfiguration(string $command, array $config = [], array $re // Run command. $result = $this->runCommand($command, false); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/DockerCommandsTest.php b/tests/Features/Commands/DockerCommandsTest.php index a033ca886..cd4d5e295 100644 --- a/tests/Features/Commands/DockerCommandsTest.php +++ b/tests/Features/Commands/DockerCommandsTest.php @@ -22,9 +22,9 @@ class DockerCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider(): array + public static function dataProvider(): array { - return $this->getFixtureContent('commands/docker.yml'); + return self::getFixtureContent('commands/docker.yml'); } /** @@ -33,9 +33,9 @@ public function dataProvider(): array * @return array * An array of test data arrays with assertions. */ - public function dataProviderDockerComposeContent(): array + public static function dataProviderDockerComposeContent(): array { - return $this->getFixtureContent('commands/docker-compose-content.yml'); + return self::getFixtureContent('commands/docker-compose-content.yml'); } /** diff --git a/tests/Features/Commands/DocumentationCommandsTest.php b/tests/Features/Commands/DocumentationCommandsTest.php index 772c93743..4424d7e51 100644 --- a/tests/Features/Commands/DocumentationCommandsTest.php +++ b/tests/Features/Commands/DocumentationCommandsTest.php @@ -21,9 +21,9 @@ class DocumentationCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/documentation.yml'); + return self::getFixtureContent('commands/documentation.yml'); } /** @@ -44,7 +44,7 @@ public function testDocumentation(string $command, array $resources = [], array // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/DrupalCommandsTest.php b/tests/Features/Commands/DrupalCommandsTest.php index 8d080d85b..88a357da5 100644 --- a/tests/Features/Commands/DrupalCommandsTest.php +++ b/tests/Features/Commands/DrupalCommandsTest.php @@ -22,9 +22,9 @@ class DrupalCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/drupal.yml'); + return self::getFixtureContent('commands/drupal.yml'); } /** @@ -33,9 +33,9 @@ public function dataProvider() * @return array * An array of test data arrays with assertions. */ - public function dataProviderSettings() + public static function dataProviderSettings() { - return $this->getFixtureContent('commands/drupal-settings-setup.yml'); + return self::getFixtureContent('commands/drupal-settings-setup.yml'); } /** @@ -69,7 +69,7 @@ public function testDrupalCommands(string $command, array $config = [], string $ // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/DumpCommandsTest.php b/tests/Features/Commands/DumpCommandsTest.php index 158b3c510..e32246a7a 100644 --- a/tests/Features/Commands/DumpCommandsTest.php +++ b/tests/Features/Commands/DumpCommandsTest.php @@ -22,9 +22,9 @@ class DumpCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/dump.yml'); + return self::getFixtureContent('commands/dump.yml'); } /** @@ -51,7 +51,7 @@ public function testDump(string $command, array $config = [], array $resources = // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/GitHooksCommandsTest.php b/tests/Features/Commands/GitHooksCommandsTest.php index 8b449fe4a..1fb3174db 100644 --- a/tests/Features/Commands/GitHooksCommandsTest.php +++ b/tests/Features/Commands/GitHooksCommandsTest.php @@ -22,9 +22,9 @@ class GitHooksCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/git-hooks.yml'); + return self::getFixtureContent('commands/git-hooks.yml'); } protected function setUp(): void @@ -62,7 +62,7 @@ public function testGitHooks(string $command, array $config = [], array $expecta // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/GitleaksCommandsTest.php b/tests/Features/Commands/GitleaksCommandsTest.php index 776e28ac0..fe0e82be7 100644 --- a/tests/Features/Commands/GitleaksCommandsTest.php +++ b/tests/Features/Commands/GitleaksCommandsTest.php @@ -21,9 +21,9 @@ class GitleaksCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/gitleaks.yml'); + return self::getFixtureContent('commands/gitleaks.yml'); } /** @@ -40,7 +40,7 @@ public function testGitleaks(string $command, array $expectations = []) { // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/InstallCommandsTest.php b/tests/Features/Commands/InstallCommandsTest.php index a4460c7c3..3c728402e 100644 --- a/tests/Features/Commands/InstallCommandsTest.php +++ b/tests/Features/Commands/InstallCommandsTest.php @@ -22,9 +22,9 @@ class InstallCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/install.yml'); + return self::getFixtureContent('commands/install.yml'); } /** @@ -51,7 +51,7 @@ public function testInstall(string $command, array $config = [], array $resource // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/LintCommandsTest.php b/tests/Features/Commands/LintCommandsTest.php index e5cb23b23..22a3b6ce4 100644 --- a/tests/Features/Commands/LintCommandsTest.php +++ b/tests/Features/Commands/LintCommandsTest.php @@ -22,9 +22,9 @@ class LintCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/lint.yml'); + return self::getFixtureContent('commands/lint.yml'); } /** @@ -51,7 +51,7 @@ public function testLint(string $command, array $config = [], array $resources = // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/ReleaseCommandsTest.php b/tests/Features/Commands/ReleaseCommandsTest.php index 03336f04c..11908d2a4 100644 --- a/tests/Features/Commands/ReleaseCommandsTest.php +++ b/tests/Features/Commands/ReleaseCommandsTest.php @@ -21,9 +21,9 @@ class ReleaseCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/release.yml'); + return self::getFixtureContent('commands/release.yml'); } /** @@ -50,7 +50,7 @@ public function testToolkitRelease(string $command, array $config = [], array $r // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/SymlinkProjectCommandsTest.php b/tests/Features/Commands/SymlinkProjectCommandsTest.php index ebc9e1f7e..e02a1f682 100644 --- a/tests/Features/Commands/SymlinkProjectCommandsTest.php +++ b/tests/Features/Commands/SymlinkProjectCommandsTest.php @@ -16,9 +16,9 @@ class SymlinkProjectCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/drupal-symlink-project.yml'); + return self::getFixtureContent('commands/drupal-symlink-project.yml'); } /** @@ -46,7 +46,7 @@ public function testSymlinkProjectCommands(string $command, array $config = [], // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/TestsCommandsTest.php b/tests/Features/Commands/TestsCommandsTest.php index 45ce71779..0023d019b 100644 --- a/tests/Features/Commands/TestsCommandsTest.php +++ b/tests/Features/Commands/TestsCommandsTest.php @@ -22,9 +22,9 @@ class TestsCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/tests.yml'); + return self::getFixtureContent('commands/tests.yml'); } /** @@ -51,7 +51,7 @@ public function testTests(string $command, array $config = [], array $resources // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Features/Commands/ToolCommandsTest.php b/tests/Features/Commands/ToolCommandsTest.php index 40db340a7..7723f6d7b 100644 --- a/tests/Features/Commands/ToolCommandsTest.php +++ b/tests/Features/Commands/ToolCommandsTest.php @@ -22,9 +22,9 @@ class ToolCommandsTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/tool.yml'); + return self::getFixtureContent('commands/tool.yml'); } /** @@ -52,7 +52,7 @@ public function testTool(string $command, array $config = [], array $resources = // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); @@ -65,9 +65,9 @@ public function testTool(string $command, array $config = [], array $resources = * @return array * An array of test data arrays with assertions. */ - public function dataProviderOptsReview() + public static function dataProviderOptsReview() { - return $this->getFixtureContent('commands/opts-review.yml'); + return self::getFixtureContent('commands/opts-review.yml'); } /** @@ -94,7 +94,7 @@ public function testOptsReview(string $command, array $config = [], array $resou // Run command. $result = $this->runCommand($command); -// $this->debugExpectations($result['output'], $expectations); + $this->debugExpectations($result['output'], $expectations); // Assert expectations. foreach ($expectations as $expectation) { $this->assertDynamic($result['output'], $expectation); diff --git a/tests/Unit/ReplaceBlockTest.php b/tests/Unit/ReplaceBlockTest.php index 68883676c..009a703f1 100644 --- a/tests/Unit/ReplaceBlockTest.php +++ b/tests/Unit/ReplaceBlockTest.php @@ -16,9 +16,9 @@ class ReplaceBlockTest extends AbstractTest * @return array * An array of test data arrays with assertions. */ - public function dataProvider() + public static function dataProvider() { - return $this->getFixtureContent('commands/replace-block.yml'); + return self::getFixtureContent('commands/replace-block.yml'); } /** diff --git a/tests/fixtures/commands/documentation.yml b/tests/fixtures/commands/documentation.yml index 24e832c41..584984fa5 100644 --- a/tests/fixtures/commands/documentation.yml +++ b/tests/fixtures/commands/documentation.yml @@ -1,8 +1,3 @@ -- command: 'toolkit:generate-documentation' - resources: [] - expectations: - - contains: "[ERROR] Fail to download the phpDocumentor.phar file." - - command: 'toolkit:generate-documentation --branch=docs' resources: - mkdir: docs From a9e36dfa68e795b8f599fed945294d899b61ab6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Costa=20Silva?= <1574795+joaocsilva@users.noreply.github.com> Date: Wed, 27 Sep 2023 23:09:36 +0200 Subject: [PATCH 6/8] DQA-7674: Update qa-automation for Drupal 10 (#699) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: J. João Santos --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d36f28e07..0c436ae44 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "consolidation/robo": "^3.0 || ^4.0", "cweagans/composer-patches": "^1.4 || ^1.7", "drush/drush": "^10.0.0 || ^11.0.4 || ^12.0", - "ec-europa/qa-automation": "^9.0", + "ec-europa/qa-automation": "^9.1", "guzzlehttp/guzzle": "^6.3 || ^7.0", "jakeasmith/http_build_url": "^1.0", "league/container": "^4.1.1", From 643446664ce35c0c693fc57f63fa0457c0eb35a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Costa=20Silva?= <1574795+joaocsilva@users.noreply.github.com> Date: Wed, 27 Sep 2023 23:12:53 +0200 Subject: [PATCH 7/8] DQA-7414: Ignore metapackage packages in component-check (#700) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: J. João Santos --- src/TaskRunner/Commands/ComponentCheckCommands.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/TaskRunner/Commands/ComponentCheckCommands.php b/src/TaskRunner/Commands/ComponentCheckCommands.php index 3a8008082..7319a22ad 100644 --- a/src/TaskRunner/Commands/ComponentCheckCommands.php +++ b/src/TaskRunner/Commands/ComponentCheckCommands.php @@ -252,6 +252,10 @@ protected function printComponentResults(ConsoleIO $io) */ protected function validateComponent(array $package, array $modules) { + // Ignore if the package is a metapackage. + if ($package['type'] === 'metapackage') { + return; + } $config = $this->getConfig(); $packageName = $package['name']; $hasBeenQaEd = isset($modules[$packageName]); From 54c1b73eff34dfc9034d413413175bc7e43ccf2e Mon Sep 17 00:00:00 2001 From: Joao Silva Date: Thu, 28 Sep 2023 16:13:36 +0200 Subject: [PATCH 8/8] DQA-7882: Prepare release 9.14.0 --- CHANGELOG.md | 6 ++++++ phpdoc.dist.xml | 2 +- src/Toolkit.php | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33bdc77bf..ef176e5c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Toolkit change log +## Version 9.14.0 + - DQA-7830: Switch array_pop to array_shift in Toolkit secure check. + - DQA-7713: Add support to phpunit/phpunit 10. + - DQA-7674: Update qa-automation for Drupal 10. + - DQA-7414: Ignore metapackage packages in component-check. + ## Version 9.13.1 - DQA-7826: Hotfix for components security check. diff --git a/phpdoc.dist.xml b/phpdoc.dist.xml index 091cab37c..e09e1a071 100644 --- a/phpdoc.dist.xml +++ b/phpdoc.dist.xml @@ -9,7 +9,7 @@ docs - + latest diff --git a/src/Toolkit.php b/src/Toolkit.php index fb2e11eee..3d9d9bff2 100644 --- a/src/Toolkit.php +++ b/src/Toolkit.php @@ -12,7 +12,7 @@ final class Toolkit /** * Constant holding the current version. */ - public const VERSION = '9.13.1'; + public const VERSION = '9.14.0'; /** * Returns the Toolkit root.