This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
55 lines (55 loc) · 1.5 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
{
"name": "ichhabrecht/caretaker-mattermost",
"description": "Mattermost exitpoint for advanced notification system of EXT:caretaker",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"caretaker",
"mattermost",
"notification"
],
"homepage": "https://github.com/IchHabRecht/TYPO3-caretaker_mattermost",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Nicole Cordes, Jan Haffner | CPS-IT GmbH",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^7.6 || ^8.7",
"caretaker/caretaker": "^1.0",
"thibaud-dauce/mattermost-php": "^1.0"
},
"require-dev": {
"nimut/testing-framework": "^2.0 || ^4.0",
"phpunit/phpunit": "^4.8 || ^6.5"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"autoload": {
"psr-4": {
"IchHabRecht\\CaretakerMattermost\\": "Classes/"
},
"classmap": [
"Classes/Services/ExitPoints/"
]
},
"autoload-dev": {
"psr-4": {
"IchHabRecht\\CaretakerMattermost\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}