-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
44 lines (44 loc) · 1.11 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
{
"name": "badoo/jira-client",
"type": "library",
"description": "Jira REST API client with comfortable wrappers for most commonly used API instances like issues, custom fields, components and so on",
"version": "1.1.0",
"minimum-stability": "stable",
"license": "GPL-3.0-only",
"homepage": "https://badoo.com/",
"authors": [
{
"name": "Badoo Development"
},
{
"name": "Korenevskiy Denis",
"email": "[email protected]",
"role": "Developer"
}
],
"bin": [
"bin/find-field",
"bin/generate"
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-curl": "*",
"psr/log": "^1.0",
"symfony/yaml": "^4.2|^5.0",
"league/climate": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"friendsofphp/php-cs-fixer": "^2.15"
},
"autoload": {
"psr-4": {
"Badoo\\Jira\\": "src/",
"Badoo\\Jira\\UTests\\": "tests/"
}
},
"config": {
"preferred-install": "source"
}
}