2017 © Pedro Peláez
 

library pivotal-tracker

Pivotal Tracker Laravel Notifications driver

image

laravel-notification-channels/pivotal-tracker

Pivotal Tracker Laravel Notifications driver

  • Monday, August 29, 2016
  • by laravel-notification-channels
  • Repository
  • 3 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Pivotal Tracker notification channel for Laravel 5.3

Latest Version on Packagist Software License Build Status StyleCI SensioLabsInsight Quality Score Code Coverage Total Downloads, (*1)

This package makes it easy to create stories using pivotal-tracker with Laravel 5.3, (*2)

Deprecated

This channel is deprecated and no longer maintained. As such, it will not be updated. If you would like to revive it, please create an issue in the new channels repo., (*3)

Contents

Installation

You can install the package via composer:, (*4)

``` bash composer require laravel-notification-channels/pivotal-tracker, (*5)


## Usage Now you can use the channel in your via() method inside the notification: use NotificationChannels\PivotalTracker\PivotalTrackerChannel; use NotificationChannels\PivotalTracker\PivotalTrackerMessage; use Illuminate\Notifications\Notification; class AnApplicationEvent extends Notification { public function via($notifiable) { return [PivotalTrackerChannel::class]; } public function toPivotalTracker($notifiable) { return (new PivotalTrackerMessage('Something just occurred!')) ->description('This is a test for a notification via Pivotal Tracker.') ->type('bug') ->labels(['a_chore', 'just_a_test']); } } In order to let your Notification know which pivotal-tracker user and project you are targeting, add the routeNotificationForpivotal-tracker method to your Notifiable model. This method needs to return an array containing the access token of the authorized Pivotal Tracker user and the project ID to add the story to. public function routeNotificationForpivotal-tracker() { return [ 'token' => 'NotifiableToken', 'projectId' => 'Thepivotal-trackerProjectID' ]; } ### Available methods * `name('')`: Accepts a string value for the story name. * `description('')`: Accepts a string value for the story description. * `type('')`: Accepts a string value for the story type (feature|bug|chore) * `labels([])`: Accepts an array of strings representing the story labels. * Alternatively you can pass the labels as arguments. ## Changelog Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently. ## Testing ``` bash $ composer test

Security

If you discover any security related issues, please email nbourguig@gmail.com instead of using the issue tracker., (*6)

Contributing

Please see CONTRIBUTING for details., (*7)

Credits

License

The MIT License (MIT). Please see License File for more information., (*8)

The Versions