endeavors / bit-bucket-web-hook
A simple bitbucket webhook for Laravel apps
Installs: 103
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/endeavors/bit-bucket-web-hook
Requires
- php: >=5.3.0
- illuminate/filesystem: 4.2.*
- illuminate/http: 4.2.*
- illuminate/support: 4.2.*
- itsis/php-git-hg-repo: dev-master
Requires (Dev)
- mockery/mockery: ~0.9
- orchestra/testbench: 2.1.x
- phpseclib/phpseclib: >=0.3.7
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2025-10-12 01:34:28 UTC
README
A small bitbucket webhook package with minimal setup for Laravel 4.2
Publish configuration:
php artisan config:publish endeavors/bit-bucket-web-hook
Add to providers array in app/config/app/php:
'Endeavors\BitBucketWebHook\BitBucketWebHookServiceProvider'
create a secret key
php artisan bitbucketwebhook:generate.key
Add the new secret key in your config.php to the end of the url. So if your url is: /my/url and your key is:1234 the end result will be /my/url/1234
Known issue: The command to generate a key publishes to the package directory. You will need to generate first, then publish.