drzippie / pivotal-tracker-api
提供PHP接口与PivotalTracker API V5交互的库
1.1.0
2014-01-29 16:12 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-09-11 22:02:18 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 ) ;