forked from gentlero/bitbucket-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "gentle/bitbucket-api",
"type": "library",
"description": "Bitbucket API wrapper for PHP >= 5.3",
"homepage": "https://bitbucket.org/gentlero/bitbucket-api",
"keywords": ["bitbucket", "api"],
"license": "MIT",
"authors": [
{
"name": "Alexandru Guzinschi",
"email": "alex@gentle.ro",
"homepage": "http://www.sebi.me",
"role": "Developer"
}
],
"require": {
"php": ">=5.3",
"kriswallsmith/buzz": "~0.13",
"jacobkiers/oauth": "~1.0.10"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"conflict": {
"eabay/bitbucket-repo-sync": "*"
},
"suggest": {
"ext-curl": "*"
},
"autoload": {
"psr-0": { "Bitbucket\\": "lib/" }
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}