-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 910 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
26
27
28
29
30
{
"name": "steffenmaechtel/exception_handling_for_typo3_db",
"type": "typo3-cms-extension",
"description": "TYPO3 CMS extension: Throw exception in case of error instead of show error with DebugUtility::debug",
"homepage": "https://github.com/steffenmaechtel/exception_handling_for_typo3_db",
"license": "GPL-2.0-or-later",
"keywords": [
"cms",
"typo3"
],
"conflict": {
"steffenmaechtel/fix_duplicate_database_connection": "*"
},
"require": {
"typo3/cms-core": ">=8.7.0,<8.7.999",
"php": ">=7.0.0,<7.3.0"
},
"autoload": {
"psr-4": {
"SteffenMaechtel\\ExceptionHandlingForTypo3Db\\": "Classes"
}
},
"authors": [
{
"name": "Steffen Maechtel",
"email": "info@steffen-maechtel.de",
"homepage": "http://www.steffen-maechtel.de/"
}
]
}