forked from gentlero/bitbucket-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.07 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
39
40
{
"name": "gentle/bitbucket-api",
"type": "library",
"description": "Bitbucket API wrapper for PHP >= 5.4",
"homepage": "https://bitbucket.org/gentlero/bitbucket-api",
"keywords": ["bitbucket", "api"],
"license": "MIT",
"authors": [
{
"name": "Alexandru Guzinschi",
"email": "[email protected]",
"homepage": "http://www.sebi.me",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"kriswallsmith/buzz": "^0.16",
"jacobkiers/oauth": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "~2.7"
},
"conflict": {
"eabay/bitbucket-repo-sync": "*",
"rlacerda83/bitbucket-api": "*"
},
"suggest": {
"ext-curl": "*"
},
"autoload": {
"psr-0": { "Bitbucket\\": "lib/" },
"files": ["polyfill-55.php"]
},
"scripts": {
"style": "php vendor/bin/phpcs --standard=psr2 lib/",
"test": "php vendor/bin/phpunit"
}
}