edderrd/pivotal-tracker-api

提供一个PHP接口与PivotalTracker API V5交互的库

1.1.3 2016-11-24 05:40 UTC

This package is not auto-updated.

Last update: 2024-09-20 21:17:57 UTC


README

提供一个PHP接口与PivotalTracker API V5交互的库

示例

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

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

添加故事

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