You are here

function hosting_platform_git_platform_deploy_strategies in Aegir Deploy 7.3

Implements hook_platform_deploy_strategies().

File

modules/platform_git/hosting_platform_git.module, line 45
Drupal hooks for the hosting_platform_git module.

Code

function hosting_platform_git_platform_deploy_strategies() {
  return [
    'platform_git' => [
      'label' => t('Deploy from Git repository (not managed by Composer)'),
      'required_fields' => [
        'field_git_repository_url',
      ],
    ],
  ];
}