-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 996 Bytes
/
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": "stingus/jira-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for applications used as Jira consumers, providing Oauth 1.0a integration",
"keywords": ["jira","oauth","consumer"],
"homepage": "http://tbd",
"license": "MIT",
"authors": [
{
"name": "Arthur Kerpician",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-openssl": "*",
"ext-json": "*",
"symfony/framework-bundle": "^3.4 | ^4.3",
"guzzlehttp/guzzle": "^6.2",
"guzzlehttp/oauth-subscriber": "^0"
},
"require-dev": {
"symfony/translation": "^3.4 | ^4.3",
"symfony/yaml": "^3.4 | ^4.3",
"doctrine/doctrine-bundle": "^1.9",
"doctrine/orm": "^2.5",
"phpunit/phpunit": "^6.2",
"codeclimate/php-test-reporter": "^0",
"escapestudios/symfony2-coding-standard": "^3.9"
},
"autoload": {
"psr-4": {
"Stingus\\JiraBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}