Skip to content
Snippets Groups Projects

Issue #3512785: Enable CI for D10

Merged Tim Plunkett requested to merge issue/project_browser-3512785:3512785-enable-ci-d10 into 2.0.x
Files
5
@@ -34,35 +34,35 @@ abstract class DrupalDotOrgSourceBase extends ProjectBrowserSourceBase implement
*
* @const string
*/
public const string DRUPAL_ORG_ENDPOINT = 'https://www.drupal.org';
public const DRUPAL_ORG_ENDPOINT = 'https://www.drupal.org';
/**
* Endpoint to query data from.
*
* @const string
*/
public const string JSONAPI_ENDPOINT = self::DRUPAL_ORG_ENDPOINT . '/jsonapi';
public const JSONAPI_ENDPOINT = self::DRUPAL_ORG_ENDPOINT . '/jsonapi';
/**
* Endpoint to query modules.
*
* @const string
*/
protected const string JSONAPI_MODULES_ENDPOINT = self::JSONAPI_ENDPOINT . '/index/project_modules';
protected const JSONAPI_MODULES_ENDPOINT = self::JSONAPI_ENDPOINT . '/index/project_modules';
/**
* Value of the revoked status in the security coverage field.
*
* @const string
*/
protected const string REVOKED_STATUS = 'revoked';
protected const REVOKED_STATUS = 'revoked';
/**
* This is what Drupal.org understands as "Covered" modules.
*
* @var array
*/
private const array COVERED_VALUES = ['covered'];
private const COVERED_VALUES = ['covered'];
public function __construct(
array $configuration,
Loading