-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
39 lines (39 loc) · 1 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
{
"name": "rjvandoesburg/laravel-jira-rest-client",
"license": "MIT",
"authors": [
{
"name": "Robert-John van Doesburg",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6.4",
"laravel/framework": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Atlassian\\JiraRest\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Atlassian\\JiraRest\\JiraRestServiceProvider"
],
"aliases": {
"Jira": "Atlassian\\JiraRest\\Facades\\Jira"
}
}
},
"suggest": {
"salsify/json-streaming-parser": "Require this when you want to parse the response in blocks",
"guzzlehttp/oauth-subscriber": "Required when using OAuth authentication"
}
}