eduardocruz / pivotal-tracker-api
A fork from drzippie/pivotal-tracker-api
1.1.1
2014-11-02 09:20 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-06-21 22:20:40 UTC
README
Important Update: Pivotal Tracker was sunset on april 30, 2025
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 ) ;