-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·57 lines (57 loc) · 1.78 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
{
"name": "contaoacademy/contao-zammad-nc-api-bundle",
"description": "API Anbindung zum Ticket System Zammad über ein Gateway des Notification-Center",
"type": "contao-bundle",
"keywords": [
"contao",
"zammad",
"notification-center"
],
"homepage": "https://contao-academy.de",
"authors": [
{
"name": "Contao Academy",
"homepage": "https://contao-academy.de",
"role": "Owner"
},
{
"name": "Fritz Michael Gschwantner",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "LGPL-3.0-or-later",
"autoload": {
"psr-4": {
"ContaoAcademy\\ZammadNCApiBundle\\": "src/"
}
},
"require": {
"php": ">=8.1",
"codefog/contao-haste": "^5.1",
"contao/core-bundle": "^4.13 || ^5.3",
"terminal42/notification_center": "^2.0.5",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"extra": {
"contao-manager-plugin": "ContaoAcademy\\ZammadNCApiBundle\\ContaoManager\\Plugin"
},
"support": {
"issues": "https://github.com/contaoacademy/contao-zammad-nc-api-bundle/issues",
"source": "https://github.com/contaoacademy/contao-zammad-nc-api-bundle"
},
"require-dev": {
"contao/easy-coding-standard": "^6.0",
"contao/rector": "^1.0"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}