Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Latest commit

 

History

History
37 lines (25 loc) · 890 Bytes

raygun.md

File metadata and controls

37 lines (25 loc) · 890 Bytes

Raygun recipe

Installing

Install with composer

composer require deployer/recipes --dev

Add to your deploy.php

require 'recipe/raygun.php';

Configuration

  • raygun_api_key – the API key of your Raygun application
  • raygun_version – the version of your application that this deployment is releasing
  • raygun_owner_name – the name of the person creating this deployment
  • raygun_email – the email of the person creating this deployment
  • raygun_comment – the deployment notes
  • raygun_scm_identifier – the commit that this deployment was built off
  • raygun_scm_type - the source control system you use

Tasks

  • raygun:notify – send deployment details to Raygun

Usage

To notify Raygun of a successful deployment, you can use the 'raygun:notify' task after a deployment.

after('deploy', 'raygun:notify');