-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
77 lines (77 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "brockhaus-ag/contao-release-stages-bundle",
"description": "Mit dem Contao Release Stages Bundle der BROCKHAUS AG kannst DU ganz einfach Releases erstellen und auf Deiner Prod-Stage hochladen.",
"keywords": [
"contao",
"bundle",
"release",
"releasing",
"stages",
"auto",
"deployment",
"BROCKHAUS AG"
],
"type": "contao-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "BROCKHAUS AG",
"email": "[email protected]",
"homepage": "https://www.brockhaus-ag.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/brockhaus-ag/contao-release-stages-bundle/issues",
"source": "https://github.com/brockhaus-ag/contao-release-stages-bundle"
},
"require": {
"php": ">=7.4",
"contao/core-bundle": "^4.9",
"symfony/config": "^4.2 || ^5.1",
"symfony/dependency-injection": "^4.2 || ^5.1",
"symfony/http-kernel": "^4.2 || ^5.1",
"twig/twig": "^2.12 || ^3.0",
"phpseclib/phpseclib": "~3.0",
"ext-gd": "*",
"ext-curl": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-ftp": "*",
"ext-pdo": "*",
"ext-ssh2": "*"
},
"require-dev": {
"contao/manager-plugin": "^2.3",
"contao/test-case": "^4.0",
"phpunit/phpunit": "^8.4",
"symfony/http-client": "4.4.*",
"symfony/phpunit-bridge": "4.4.*",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"BrockhausAg\\ContaoReleaseStagesBundle\\": "src/"
},
"classmap": [
"src/Resources/contao"
],
"exclude-from-classmap": [
"src/Resources/contao/config",
"src/Resources/contao/dca",
"src/Resources/contao/languages",
"src/Resources/contao/templates"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"contao-manager-plugin": "BrockhausAg\\ContaoReleaseStagesBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"*": true
}
}
}