{"id":22669092,"url":"https://github.com/stjohnjohnson/php-rally-connector","last_synced_at":"2026-02-08T03:34:01.283Z","repository":{"id":6857015,"uuid":"8105827","full_name":"stjohnjohnson/php-rally-connector","owner":"stjohnjohnson","description":"RallyDev PHP Connector","archived":false,"fork":false,"pushed_at":"2013-02-09T03:52:15.000Z","size":100,"stargazers_count":2,"open_issues_count":2,"forks_count":18,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T14:44:14.886Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stjohnjohnson.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-02-09T03:52:07.000Z","updated_at":"2013-11-03T13:26:03.000Z","dependencies_parsed_at":"2022-09-18T10:50:54.025Z","dependency_job_id":null,"html_url":"https://github.com/stjohnjohnson/php-rally-connector","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stjohnjohnson/php-rally-connector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjohnjohnson%2Fphp-rally-connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjohnjohnson%2Fphp-rally-connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjohnjohnson%2Fphp-rally-connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjohnjohnson%2Fphp-rally-connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stjohnjohnson","download_url":"https://codeload.github.com/stjohnjohnson/php-rally-connector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stjohnjohnson%2Fphp-rally-connector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29219274,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T03:18:47.732Z","status":"ssl_error","status_checked_at":"2026-02-08T03:15:31.985Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-09T15:18:28.533Z","updated_at":"2026-02-08T03:34:01.270Z","avatar_url":"https://github.com/stjohnjohnson.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Rally API Connector\n===================\n\nRallyDev, the Agile tool, has pretty decent [webservices][1], but there were no published libraries for talking to them through PHP.  This is a simple but effective class to communicate back and forth with Rally.\n\n## Installation ##\n\nRequires PHP 5.3+ with JSON and CuRL support installed.\n\n## Usage ##\n\nThere are only five (5) basic methods you should be using:\n - find (Find list of objects)\n - get (Get an object)\n - create (Create an object)\n - update (Update an object)\n - delete (Delete an object)\n\nHere are some examples:\n\n```php\nuse Yahoo\\Connectors\\Rally;\n\n$rally = new Rally($username, $password);\n// Set workspace (if you have multiple workspaces)\n$rally-\u003esetWorkspace($workspace_ref);\n\n// Create\n$result = $rally-\u003ecreate('defect', array(\n         'Name' =\u003e 'New Defect',\n  'Description' =\u003e 'This is a description',\n));\n$defect_id = $result['CreateResult']['Object']['ObjectID'];\n\n// Update\n$result = $rally-\u003eupdate('defect', $defect_id, array(\n  'Name' =\u003e 'Something else'\n));\n\n// Get\n$result = $rally-\u003eget('defect', $defect_id);\n\n// Find\n$results = $rally-\u003efind('defect', '(Name = \"Something else\")', 'Rank');\n\n// Delete\n$rally-\u003edelete('defect', $defect_id);\n\n// Me\n$result = $rally-\u003eupdate('defect', $defect_id, array(\n  'Owner' =\u003e $rally-\u003eme()\n));\n\n```\n\n## Versions ##\n\n - 1.4 (2013.02.05): Adding method to read user reference $obj-\u003eme()\n - 1.3 (2013.01.29): Adding workspace calls to all methods\n - 1.2 (2013.01.24): Allowing you to specify different workspaces\n - 1.1 (2013.01.17): Changing returns to be more stripped down and throwing custom exceptions on errors and warnings\n - 1.0 (2013.01.16): Inital release\n\n## References ##\n\n - [Rally Web Service Documentation][1]\n\n## License ##\n\nCopyright (c) 2013 Yahoo! Inc.  All rights reserved. Copyrights licensed under the New BSD License.\n\n*St. John Johnson \u003cstjohn@yahoo-inc.com\u003e*\n\n[1]: https://rally1.rallydev.com/slm/doc/webservice/ \"Rally Web Service Documentation\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstjohnjohnson%2Fphp-rally-connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstjohnjohnson%2Fphp-rally-connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstjohnjohnson%2Fphp-rally-connector/lists"}