-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
62 lines (62 loc) · 1.89 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
{
"name": "thecatontheflat/atlassian-connect-bundle",
"description": "Atlassian Connect Symfony Bundle",
"keywords": ["bundle", "symfony", "atlassian", "connect", "jira", "confluence", "atlassian-connect"],
"homepage": "https://github.com/thecatontheflat/atlassian-connect-bundle",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/dependency-injection": "^5.4|^6.3|^7.0",
"symfony/http-kernel": "^5.4|^6.3|^7.0",
"symfony/config": "^5.4|^6.3|^7.0",
"symfony/http-client": "^5.4|^6.3|^7.0",
"symfony/yaml": "^5.4|^6.3|^7.0",
"symfony/security-bundle": "^5.4|^6.3|^7.0",
"symfony/routing": "^5.4|^6.3|^7.0",
"symfony/console": "^5.4|^6.3|^7.0",
"doctrine/orm": "^2.5",
"twig/twig": "^2.10|^3.0",
"firebase/php-jwt": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"symfony/framework-bundle": "^5.4|^6.3|^7.0",
"doctrine/doctrine-bundle": "^1.12|^2.5",
"symfony/browser-kit": "^5.4|^6.3|^7.0",
"symfony/twig-bundle": "^5.4|^6.3|^7.0",
"doctrine/doctrine-fixtures-bundle": "^2.3|^3.0",
"symfony/phpunit-bridge": "^5.4|^6.3|^7.0",
"symfony/var-exporter": "^6.3|7.0"
},
"authors": [
{
"name": "Vitaliy Zurian",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "Denis Golubovskiy",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/thecatontheflat/atlassian-connect-bundle/issues"
},
"autoload": {
"psr-4": {"AtlassianConnectBundle\\": "src"}
},
"autoload-dev": {
"psr-4": {
"AtlassianConnectBundle\\Tests\\Functional\\App\\": "Tests/Functional/app/src",
"AtlassianConnectBundle\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}