forked from gentlero/bitbucket-api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "private-packagist/bitbucket-api",
"type": "library",
"description": "Bitbucket API wrapper for PHP >= 7.1",
"keywords": ["bitbucket", "api"],
"license": "MIT",
"authors": [
{
"name": "Alexandru Guzinschi",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Packagist Conductors GmbH",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.0",
"ext-json": "*",
"psr/http-message": "^1.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^2.0",
"symfony/deprecation-contracts": "^2.2 || ^3.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit":"^7.5|^8|^9",
"php-http/mock-client": " ^1.2",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.90|^1",
"nyholm/psr7": "^1.6.1",
"php-http/message-factory": "^1.0"
},
"replace": {
"gentle/bitbucket-api": "*"
},
"conflict": {
"eabay/bitbucket-repo-sync": "*",
"rlacerda83/bitbucket-api": "*"
},
"suggest": {
"ext-curl": "*",
"kriswallsmith/buzz": "^0.17||^1.0",
"nyholm/psr7": "^1.2"
},
"autoload": {
"psr-0": { "Bitbucket\\": "lib/" }
},
"autoload-dev": {
"psr-0": { "Bitbucket\\": "test/" }
},
"scripts": {
"style": "php vendor/bin/phpcs --standard=psr2 lib/ test --ignore=*/HistoryVersionBridge.php",
"test": "php vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}