# jira-api-client **Repository Path**: rainiswalking/jira-api-client ## Basic Information - **Project Name**: jira-api-client - **Description**: 使用php封装JIRA rest api接口 - **Primary Language**: PHP - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2014-03-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #jira-api-client #使用php封装JIRA rest api接口 刚开始 ##使用示例 $client = new JIRA_api_client(array( 'api_url'=>'http://localhost:8080/rest/api/2/', 'key'=>'api', 'pwd'=>'apitest' )); //$ret = $client->getProjects(); $ret = $client->getProject('test'); echo '
';
	print_r($ret);