This repository has been archived by the owner on Nov 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
65 lines (65 loc) · 1.68 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
65
{
"name": "brezzhnev/atlassian-connect-core",
"type": "library",
"description": "Atlassian Connect Framework to build add-on for the JIRA and Confluence",
"keywords": [
"laravel",
"brezzhnev",
"atlassian",
"jira",
"confluence",
"add-on"
],
"license": "MIT",
"support": {
"issues": "https://github.com/brezzhnev/atlassian-connect-core/issues",
"source": "https://github.com/brezzhnev/atlassian-connect-core"
},
"authors": [
{
"name": "Artem Brezhnev",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"firebase/php-jwt": "^5.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "^1.2",
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.4|^9.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"AtlassianConnectCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AtlassianConnectCore\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"AtlassianConnectCore\\ServiceProvider"
],
"aliases": {
"Descriptor": "AtlassianConnectCore\\Facades\\Descriptor",
"Webhook": "AtlassianConnectCore\\Facades\\Webhook"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}