forked from BitbucketPHP/Client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.42 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
{
"name": "bitbucket/client",
"description": "Bitbucket API 2.0 client for PHP",
"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]",
"homepage": "https://github.com/GrahamCampbell"
}
],
"require": {
"php": "^7.4.15 || ^8.0.2",
"ext-json": "*",
"php-http/cache-plugin": "^1.7.5",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.2",
"php-http/multipart-stream-builder": "^1.2",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/polyfill-php80": "^1.17"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/mock-client": "^1.5"
},
"autoload": {
"psr-4": {
"Bitbucket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bitbucket\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}