-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.07 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
{
"name": "friendsoftypo3/dbal",
"type": "typo3-cms-extension",
"description": "A database abstraction layer implementation for TYPO3 4.6+ based on ADOdb and offering a lot of other features.",
"homepage": "https://extensions.typo3.org/extension/dbal/",
"support": {
"issues": "https://github.com/FriendsOfTYPO3/dbal/issues",
"source": "https://github.com/FriendsOfTYPO3/dbal",
"docs": "https://docs.typo3.org/p/friendsoftypo3/dbal/main/en-us/"
},
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "~8.4",
"friendsoftypo3/adodb": "~8.4"
},
"require-dev": {
"typo3/cms": "^8.7",
"typo3/testing-framework": "^1.1",
"friendsofphp/php-cs-fixer": "^2.0"
},
"replace": {
"dbal": "*",
"typo3/cms-dbal": "*"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Dbal\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Dbal\\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"
}
}
}