Skip to content

izap/pivotal-tracker-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pivotal-tracker-api

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 )  ;

About

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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%