-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "endeavors/bit-bucket-web-hook",
"description": "A simple bitbucket webhook for Laravel apps",
"keywords": ["bitbucket","webhook","bitbucket webhook","laravel bitbucket webhook"],
"authors": [
{
"name": "adam",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "4.2.*",
"illuminate/filesystem": "4.2.*",
"illuminate/http" : "4.2.*",
"itsis/php-git-hg-repo" : "dev-master"
},
"require-dev": {
"phpseclib/phpseclib": ">=0.3.7",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"orchestra/testbench": "2.1.x"
},
"autoload": {
"classmap": [
"src/migrations",
"src/Endeavors/BitBucketWebHook"
],
"psr-0": {
"Endeavors\\BitBucketWebHook\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}