drzippie/pivotal-tracker-api

Library that provides a PHP interface to interact with the PivotalTracker API V5

1.1.0 2014-01-29 16:12 UTC

This package is auto-updated.

Last update: 2024-04-11 21:11:55 UTC


README

Library that provides a PHP interface to interact with the PivotalTracker API V5

Example:

$pivotalTracker =  new \PivotalTrackerV5\Client(  $apiToken , $projectId ) ;

$storyList = $pivotalTracker->getStories( 'label:test')  ;

To Add a Story:

$story =  array(
		'name' => 'A Brand New Story',
		'story_type' => 'feature',
		'description' => 'A small description',
		'labels' => array(  
		    array( 
		    	'name' => 'test'  
		    ) 
		 )
); 
$result = $pivotalTracker->addStory( $story )  ;