jketelaar / bitbucket
Bitbucket is a Bitbucket bridge for Laravel 5 based on the Github bridge from GrahamCampbell
Requires
- php: >=5.5.9
- gentle/bitbucket-api: 0.7.*
- league/oauth2-client: ~1.0
- stevenmaguire/oauth2-bitbucket: ~1.0@dev
This package is auto-updated.
Last update: 2024-10-28 05:08:57 UTC
README
Laravel Bitbucket was created by, and is maintained by JKetelaar, and is a PHP Bitbucket API bridge for Laravel 5. It utilises Graham its Laravel Manager package.
Installation
PHP 5.5+ and Composer are required.
To get the latest version of Laravel Bitbucket, simply run
composer require "jketelaar/bitbucket"
You'll then need to run composer install
or composer update
to download it and have the autoloader updated.
Once Laravel Bitbucket is installed, you need to register the service provider. Open up config/app.php
and add the following to the providers
key.
'JKetelaar\Bitbucket\BitbucketServiceProvider'
You can register the Bitbucket facade in the aliases
key of your config/app.php
file if you like.
'Bitbucket' => 'JKetelaar\Bitbucket\Facades\Bitbucket'