dev-master
9999999-devAPI provider for Bitbucket.org
MIT
The Requires
The Development Requires
by Rob Bayliss
0.1.0
0.1.0.0API provider for Bitbucket.org
MIT
The Requires
The Development Requires
by Rob Bayliss
Wallogit.com
2017 © Pedro Peláez
API provider for Bitbucket.org
This library implements the Bitbucket V2 API using the Guzzle HTTP library., (*1)
It does not currently attempt to implement any of the V1 features., (*2)
#!php
// Access the Bitbucket APIs without authentication
$api = new \rbayliss\BitbucketAPI\Bitbucket();
// Access the APIs using username/password authentication:
$api = new \rbayliss\BitbucketAPI\Bitbucket([
'login' => [
'yourusername',
'yourpassword',
]
]);
// Access the APIs using OAuth authentication:
$api = new \rbayliss\BitbucketAPI\Bitbucket([
'oauth' => [
'key' => 'YOURKEY',
'secret' => 'YOURSECRET',
]
]);
This project implements all of the V2 Bitbucket endpoints. Those endpoints are:, (*3)
API provider for Bitbucket.org
MIT
API provider for Bitbucket.org
MIT