edderrd / pivotal-tracker-api
Library that provides a PHP interface to interact with the PivotalTracker API V5
1.1.3
2016-11-24 05:40 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-06-14 00:53:59 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 ) ;