-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
64 lines (64 loc) · 1.69 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": "martiis/bitbucket-cli",
"description": "Command line tool for bitbucket",
"type": "project",
"autoload": {
"psr-4": { "Martiis\\BitbucketCli\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Martiis\\BitbucketCli\\Test\\Unit\\": "tests/unit/",
"Martiis\\BitbucketCli\\Test\\Functional\\": "tests/functional/"
},
"files": [ "vendor/symfony/var-dumper/Resources/functions/dump.php" ]
},
"require": {
"php": ">=7.1.3",
"symfony/console": "^3.3|^4.0",
"symfony/dependency-injection": "^3.3|^4.0",
"symfony/yaml": "^3.3|^4.0",
"symfony/config": "^3.3|^4.0",
"guzzlehttp/guzzle": "^6.3",
"incenteev/composer-parameter-handler": "^2.1",
"doctrine/cache": "^1.7",
"league/oauth2-client": "^2.2",
"webmozart/json": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"symfony/var-dumper": "^3.3",
"codeception/codeception": "^2.3"
},
"bin": [
"bin/bitbucket"
],
"scripts": {
"handle-parameters": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-install-cmd": [
"@handle-parameters"
],
"post-update-cmd": [
"@handle-parameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "parameters.yml"
}
},
"license": "MIT",
"authors": [
{
"name": "Martynas",
"email": "martynas12@gmail.com"
}
],
"minimum-stability": "stable",
"config": {
"platform": {
"php": "7.1.3"
}
}
}