-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
25 lines (25 loc) · 934 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
{
"name": "raccoondepot/error-log",
"type": "typo3-cms-extension",
"description": "This TYPO3 extension manages errors and exceptions, even before TYPO3 fully loads. It groups and displays errors in the backend, with detailed information and stack traces. Configurable notifications and reports via email and Slack keep you informed, while AI assistance aids in resolving issues.",
"homepage": "https://github.com/raccoondepot/error_log/",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS"],
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-scheduler": "^12.4",
"symfony/http-client": "^6.0",
"slack-php/slack-block-kit": "^2.1",
"erusev/parsedown": "^1.7"
},
"autoload": {
"psr-4": {
"RD\\ErrorLog\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "error_log"
}
}
}