izap/pivotal-tracker-api

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

Installs: 21

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 12

pkg:composer/izap/pivotal-tracker-api

1.1.0 2014-01-29 16:12 UTC

This package is auto-updated.

Last update: 2025-10-06 16:20:10 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 )  ;