simplytest-8.x-4.x-dev/modules/simplytest_projects/src/DrupalUrls.php
modules/simplytest_projects/src/DrupalUrls.php
<?php
namespace Drupal\simplytest_projects;
/**
* Class DrupalUrls
*
* Helper/Utility container for Drupal.org and related Urls.
*
* @package Drupal\simplytest_projects
*/
class DrupalUrls {
/**
* Drupal.org URL
*/
const ORG = 'https://www.drupal.org/';
/**
* Drupal.org JSON API URL
*/
const ORG_API = 'https://www.drupal.org/api-d7/';
/**
* Drupal.org full project GIT URL.
*/
const GIT_PROJECT = 'http://git.drupal.org/project/';
/**
* Drupal.org sandbox project GIT URL.
*/
const GIT_SANDBOX = 'http://git.drupal.org/sandbox/';
/**
* Drupal.org git web interface URL.
*/
const GIT_WEB = 'http://cgit.drupalcode.org/';
}
