forked from Scalr/bitbucket-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.33 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
41
42
43
44
45
46
47
48
{
"name": "bitbucket/client",
"description": "A Modern Bitbucket API 2.0 Client",
"keywords": ["bitbucket", "bitbucket api", "Bitbucket API", "BitbucketAPI", "Bitbucket", "Bitbucket Client", "Bitbucket API Client", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"psr/http-message": "^1.0",
"psr/cache": "^1.0",
"php-http/httplug": "^1.1|^2.0",
"php-http/discovery": "^1.6",
"php-http/cache-plugin": "^1.6",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^1.9|^2.0",
"php-http/multipart-stream-builder": "^1.0"
},
"require-dev": {
"graham-campbell/analyzer": "^2.4",
"phpunit/phpunit": "^7.5|^8.5|^9.0",
"php-http/guzzle6-adapter": "^1.1|^2.0"
},
"autoload": {
"psr-4": {
"Bitbucket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bitbucket\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}